Eric Bower
·
2024-12-27
config
1{
2 "layer": "top",
3 "position": "bottom",
4 "modules-left": ["sway/workspaces"],
5 "modules-center": ["sway/window"],
6 "modules-right": ["battery", "backlight", "pulseaudio", "network", "clock"],
7
8 "pulseaudio": {
9 "tooltip": false,
10 "scroll-step": 5,
11 "format": "{icon} {volume}%",
12 "format-muted": "{icon} {volume}%",
13 "on-click":"pavucontrol",
14 "format-icons": {
15 "default": ["", "", " "]
16 }
17 },
18 "sway/workspaces": {
19 "disable-scroll": true,
20 "all-outputs": true,
21 "format": "{name}"
22 },
23 "network": {
24 "tooltip": false,
25 "format-wifi": " {essid}",
26 "format-ethernet": "",
27 "on-click": "iwgtk"
28 },
29 "backlight": {
30 "tooltip": false,
31 "format": " {}%",
32 "interval":1,
33 "on-scroll-up": "light -A 5",
34 "on-scroll-down": "light -U 5"
35 },
36 "battery": {
37 "states": {
38 "good": 95,
39 "warning": 30,
40 "critical": 20
41 },
42 "format": "{icon} {capacity}%",
43 "format-charging": " {capacity}%",
44 "format-plugged": " {capacity}%",
45 "format-alt": "{time} {icon}",
46 "format-icons": ["", "", "", "", ""]
47 },
48 "clock": {
49 "format": "{:%I:%M %m/%d}"
50 }
51}