This repository has been archived by the owner on Dec 21, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.jsonc
63 lines (62 loc) · 2.08 KB
/
config.jsonc
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"layer": "top",
"modules-left": ["custom/distro", "tray"],
"modules-center": ["hyprland/workspaces"],
"modules-right": ["clock", "pulseaudio", "memory", "cpu", "custom/reboot", "custom/shutdown"],
"custom/distro": {
"format": "<span font='Hack Nerd Font' size='medium'></span>",
"tooltip": false
},
"hyprland/workspaces": {
"disable-scroll": false,
"all-outputs": true,
"on-click": "activate",
"format": "<span font='Hack Nerd Font'>{icon}</span>",
"format-icons": {
"default": "<span color='#f5e0dc'></span>",
"active": "<span></span>",
"urgent": "<span></span>",
"empty": "<span color='#f5e0dc'></span>"
},
"persistent-workspaces": {
"1": [],
"2": [],
"3": [],
"4": [],
"5": []
}
},
"tray": {
"icon-size": 18,
"spacing": 10,
"tooltip": false
},
"clock": {
"format": "<span font='Hack Nerd Font' size='large' rise='-1500' color='#f5e0dc'></span> {:%R}",
"format-alt": "<span font='Hack Nerd Font' size='large' rise='-1500' color='#f5e0dc'></span> {:%A, %d. %b, %Y}"
},
"pulseaudio": {
"format": "<span font='Hack Nerd Font' size='large' rise='-1500' color='#f5e0dc'></span> <span rise='-200'>{volume}%</span>",
"tooltip": false
},
"memory": {
"interval": 5,
"format": "<span font='Hack Nerd Font' color='#f5e0dc'></span> <span rise='-200'>{}%</span>",
"tooltip": false
},
"cpu": {
"interval": 5,
"format": "<span font='Hack Nerd Font' color='#f5e0dc'></span> <span rise='-200'>{usage}%</span>",
"tooltip": false
},
"custom/reboot": {
"format": "<span font='Hack Nerd Font' color='#f5e0dc'></span>",
"on-click": "reboot",
"tooltip": false
},
"custom/shutdown": {
"format": "<span font='Hack Nerd Font' color='#f5e0dc'>⏻</span>",
"on-click": "shutdown now",
"tooltip": false
}
}