add AudioExclusive mode

This commit is contained in:
Drew Weymouth
2023-03-17 18:14:08 -07:00
parent ae4660aa2c
commit 26b3a7f667
3 changed files with 10 additions and 4 deletions
+4 -2
View File
@@ -48,7 +48,8 @@ type PlaylistPageConfig struct {
}
type LocalPlaybackConfig struct {
Volume int
AudioExclusive bool
Volume int
}
type Config struct {
@@ -90,7 +91,8 @@ func DefaultConfig() *Config {
TracklistColumns: []string{"Artist", "Album", "Time", "Plays"},
},
LocalPlayback: LocalPlaybackConfig{
Volume: 100,
AudioExclusive: false,
Volume: 100,
},
}
}