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
64
65
66
67
|
{
"layer": "top",
"position": "top",
"height": 30,
"spacing": 8,
"modules-left": [
"hyprland/workspaces",
"hyprland/window"
],
"modules-center": [
],
"modules-right": [
"tray",
"network",
"battery",
"cpu",
"memory",
"disk",
"clock"
],
"hyprland/workspaces": {
"format": "{name}",
"persistent-workspaces": {
"*" : 9
}
},
"hyprland/window" : {
"max-length": 40,
"seperate-outputs": false
},
"tray": {
"spacing": 10
},
"clock": {
"format-alt": "{:%Y-%m-%d}"
},
"cpu": {
"format": "CPU: {usage}%",
"tooltip": false
},
"memory": {
"format": "RAM: {used}GiB"
},
"disk": {
"interval": 60,
"path": "/",
"format": "ROOT: {free}"
},
"battery": {
"states": {
"good": 95,
"warning": 30,
"critical": 15
},
"format": "BAT: {capacity}%",
"format-plugged": "BAT!: {capacity}%"
},
"network": {
"format": "ONLINE",
"format-disconnected": "OFFLINE"
}
}
|