summaryrefslogtreecommitdiff
path: root/src/config/index.ts
blob: 3f9bf7af5ec6785b8e230feeaf4165abfa4aa966 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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,
    calendar,
} = config;
export default config;