summaryrefslogtreecommitdiff
path: root/src/config/index.ts
blob: 80b4dc4bda18825443fd5439badfb64926a6d651 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
import defaults from "./defaults";
import { convertSettings } from "./funcs";

const config = convertSettings(defaults);

export const {
    style,
    bar,
    launcher,
    notifpopups,
    osds,
    sidebar,
    navbar,
    math,
    updates,
    weather,
    cpu,
    gpu,
    memory,
    storage,
    wallpapers,
    calendar,
    thumbnailer,
    news,
} = config;
export default config;