From 5f70de506a623895a2b5dcb8317d9f668e559f7c Mon Sep 17 00:00:00 2001 From: Izan Gil <66965250+SrIzan10@users.noreply.github.com> Date: Mon, 19 May 2025 19:55:14 +0200 Subject: [PATCH] chore: show song title --- src/lib/components/app/daemon.svelte | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lib/components/app/daemon.svelte b/src/lib/components/app/daemon.svelte index 8c9ed09..e6e50e1 100644 --- a/src/lib/components/app/daemon.svelte +++ b/src/lib/components/app/daemon.svelte @@ -140,6 +140,7 @@ if (appState.songQueue.length > 0) { appState.currentSong = appState.songQueue[0]; appState.duration = appState.currentSong.duration; + document.title = `${appState.currentSong.title} - ${appState.currentSong.artists}`; } else { appState.error = 'No songs available.'; }