-
Notifications
You must be signed in to change notification settings - Fork 0
/
config
72 lines (61 loc) · 1.56 KB
/
config
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
68
69
70
71
{
"layer": "top", // Waybar at top layer
"position": "top", // Waybar position (top|bottom|left|right)
"height": 32, // Waybar height (to be removed for auto height)
"width": 5120, // Waybar width
"spacing": 5, // Gaps between modules (0px)
// Choose the order of the modules
"modules-left": ["river/tags"],
"modules-center": ["river/window"],
"modules-right": ["tray", "custom/pipewire", "cpu", "memory", "clock"],
// Modules configuration
"river/mode": {
"format": "mode: {}"
},
"river/layout": {
"format": " {}",
"spacing": 4
},
"river/tags": {
"num-tags": 9,
"tag-labels": ["🌐", "📁", "👾", "💬", "📼", "📷", "📸", "📜", "🪶"],
},
"river/window": {
"format": "{}"
},
"custom/pipewire": {
"format": "{icon}",
"return-type": "json",
"signal": 8,
"interval": "once",
"format-icons": {
"mute": "🔇",
"default": ["🔈", "🔉", "🔊", "📢"],
},
"exec": "pw-volume status"
},
"idle_inhibitor": {
"format": "{icon}",
"format-icons": {
"activated": "A",
"deactivated": "D"
}
},
"tray": {
// "icon-size": 10,
"spacing": 4
},
"clock": {
"format": "{:%I:%M %p}",
"tooltip-format": "<big>{:%Y %B}</big>\n<tt><small>{calendar}</small></tt>",
// "format-alt": "{:%I:%M %p}"
},
"cpu": {
"format": "CPU: {usage}%",
// "tooltip": false
},
"memory": {
"format": "MEM: {}%"
},
}
}