diff options
Diffstat (limited to 'src/config/index.ts')
| -rw-r--r-- | src/config/index.ts | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/config/index.ts b/src/config/index.ts new file mode 100644 index 0000000..d09a668 --- /dev/null +++ b/src/config/index.ts @@ -0,0 +1,22 @@ +import defaults from "./defaults"; +import { convertSettings } from "./funcs"; + +const config = convertSettings(defaults); + +export const { + style, + bar, + launcher, + notifpopups, + osds, + sideleft, + math, + updates, + weather, + cpu, + gpu, + memory, + storage, + wallpapers, +} = config; +export default config; |