From 1ffd7e1d54dd33311440cf4f6c0b2debca042c4d Mon Sep 17 00:00:00 2001 From: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> Date: Sun, 23 Mar 2025 16:16:21 +1100 Subject: config: refactor --- src/config/index.ts | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 src/config/index.ts (limited to 'src/config/index.ts') 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; -- cgit v1.2.3-freya