option to use blurred cover art for Now Playing page background

This commit is contained in:
Drew Weymouth
2025-11-08 14:22:35 -08:00
parent f48b2ba210
commit 828b5ffc56
6 changed files with 81 additions and 38 deletions
+4 -2
View File
@@ -111,7 +111,8 @@ type TracksPageConfig struct {
}
type NowPlayingPageConfig struct {
InitialView string
InitialView string
UseBackgroundImage bool
}
type PlaybackConfig struct {
@@ -242,7 +243,8 @@ func DefaultConfig(appVersionTag string) *Config {
InitialView: "List",
},
NowPlayingConfig: NowPlayingPageConfig{
InitialView: "Play Queue",
InitialView: "Play Queue",
UseBackgroundImage: true,
},
TracksPage: TracksPageConfig{
TracklistColumns: []string{"Album", "Time", "Plays"},