Adjust settings defaults
This commit is contained in:
parent
93c6d046ee
commit
3c889d87ef
1 changed files with 7 additions and 9 deletions
|
@ -32,7 +32,6 @@ export interface SettingsState {
|
||||||
general: {
|
general: {
|
||||||
followSystemTheme: boolean;
|
followSystemTheme: boolean;
|
||||||
fontContent: string;
|
fontContent: string;
|
||||||
fontHeader: string;
|
|
||||||
showQueueDrawerButton: boolean;
|
showQueueDrawerButton: boolean;
|
||||||
sideQueueType: SideQueueType;
|
sideQueueType: SideQueueType;
|
||||||
theme: AppTheme;
|
theme: AppTheme;
|
||||||
|
@ -84,10 +83,9 @@ export const useSettingsStore = create<SettingsSlice>()(
|
||||||
},
|
},
|
||||||
general: {
|
general: {
|
||||||
followSystemTheme: false,
|
followSystemTheme: false,
|
||||||
fontContent: 'Circular STD',
|
fontContent: 'Poppins',
|
||||||
fontHeader: 'Gotham',
|
showQueueDrawerButton: false,
|
||||||
showQueueDrawerButton: true,
|
sideQueueType: 'sideDrawerQueue',
|
||||||
sideQueueType: 'sideQueue',
|
|
||||||
theme: AppTheme.DEFAULT_DARK,
|
theme: AppTheme.DEFAULT_DARK,
|
||||||
themeDark: AppTheme.DEFAULT_DARK,
|
themeDark: AppTheme.DEFAULT_DARK,
|
||||||
themeLight: AppTheme.DEFAULT_LIGHT,
|
themeLight: AppTheme.DEFAULT_LIGHT,
|
||||||
|
@ -96,7 +94,7 @@ export const useSettingsStore = create<SettingsSlice>()(
|
||||||
audioDeviceId: undefined,
|
audioDeviceId: undefined,
|
||||||
crossfadeDuration: 5,
|
crossfadeDuration: 5,
|
||||||
crossfadeStyle: CrossfadeStyle.EQUALPOWER,
|
crossfadeStyle: CrossfadeStyle.EQUALPOWER,
|
||||||
globalMediaHotkeys: true,
|
globalMediaHotkeys: false,
|
||||||
muted: false,
|
muted: false,
|
||||||
playButtonBehavior: Play.NOW,
|
playButtonBehavior: Play.NOW,
|
||||||
scrobble: {
|
scrobble: {
|
||||||
|
@ -104,9 +102,9 @@ export const useSettingsStore = create<SettingsSlice>()(
|
||||||
scrobbleAtPercentage: 75,
|
scrobbleAtPercentage: 75,
|
||||||
},
|
},
|
||||||
skipButtons: {
|
skipButtons: {
|
||||||
enabled: true,
|
enabled: false,
|
||||||
skipBackwardSeconds: 10,
|
skipBackwardSeconds: 5,
|
||||||
skipForwardSeconds: 30,
|
skipForwardSeconds: 10,
|
||||||
},
|
},
|
||||||
style: PlaybackStyle.GAPLESS,
|
style: PlaybackStyle.GAPLESS,
|
||||||
type: PlaybackType.LOCAL,
|
type: PlaybackType.LOCAL,
|
||||||
|
|
Reference in a new issue