zadam / trilium

Build your personal knowledge base with Trilium Notes
GNU Affero General Public License v3.0
27.2k stars 1.9k forks source link

Make window title "{note title} - Trilium Notes" not "Trilium Notes - {note title}" #1551

Closed sigaloid closed 2 years ago

sigaloid commented 3 years ago

Just so those of us with smaller window names at the bottom can better see the name of the note :smile:

Example: image

What it should be:

image

leeyaunlong commented 3 years ago
let tmp = $("title").html();
$("title").html(tmp.replace("Trilium Notes - ",""));

Just so those of us with smaller window names at the bottom can better see the name of the note 😄

Example: image

What it should be:

image

let tmp = $("title").html();
$("title").html(tmp.replace("Trilium Notes - ",""));
sigaloid commented 3 years ago

Oh yeah, electron... Thanks :smile:

zadam commented 3 years ago

I'm reopening the issue since it is actually something I want to fix.

@leeyaunlong I think this works one time only, once you switch note, it will be reset to the old form.