Moved Themer to Settings. Added option to set default theme

This commit is contained in:
Paweł Malak
2021-11-18 13:47:27 +01:00
parent 426766225b
commit e2285e2deb
20 changed files with 156 additions and 54 deletions

View File

@@ -28,4 +28,5 @@ export const configTemplate: Config = {
monthSchema:
'January;February;March;April;May;June;July;August;September;October;November;December',
showTime: false,
defaultTheme: 'tron',
};

View File

@@ -2,6 +2,7 @@ import {
DockerSettingsForm,
OtherSettingsForm,
SearchForm,
ThemeSettingsForm,
WeatherForm,
} from '../../interfaces';
@@ -43,3 +44,7 @@ export const dockerSettingsTemplate: DockerSettingsForm = {
kubernetesApps: true,
unpinStoppedApps: true,
};
export const themeSettingsTemplate: ThemeSettingsForm = {
defaultTheme: 'tron',
};