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
|
// TODO: idle-inhibitor? image (tux?)?
{
"layer": "top",
"position": "bottom",
"modules-right": ["pulseaudio", "backlight", "battery", "tray", "clock"],
"pulseaudio": {
"on-click": "pavucontrol",
// Font "Awesome" speaker icons can't be made to render, I don't care why, emoji time.
"format": "{volume}% 🎧",
"format-muted": "{volume}% "
},
"battery": {
"format": "{capacity}% {icon}",
"format-icons": ["", "", "", "", ""]
},
"backlight": {
"format": "{percent}% {icon}",
"format-icons": [""],
"on-scroll-up": "light -A 1",
"on-scroll-down": "light -U 1"
},
"clock": {
"format-alt": "{:%a, %d. %b %H:%M}"
},
"tray": {
"icon-size": 20,
"spacing": 10
}
}
|