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.'; }