-
Notifications
You must be signed in to change notification settings - Fork 0
/
config
76 lines (76 loc) · 2.23 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
72
73
74
75
76
{
"layer": "top",
"modules-left": ["wlr/workspaces"],
"modules-center": [],
"modules-right": ["cpu", "memory", "temperature", "backlight", "battery", "pulseaudio", "clock", "tray"],
// Modules configuration
"wlr/workspaces": {
"format": "{icon}",
"on-click": "activate",
"sort-by-number": true
},
"tray": {
"spacing": 10,
"icon-size": 30
},
"clock": {
"format": "{: %Y-%m-%d %a %H:%M}",
"tooltip": false
},
"cpu": {
"format": "{usage}% ",
"tooltip": false
},
"memory": {
"format": "{}% ",
"tooltip": true
},
"temperature": {
"critical-threshold": 80,
"format": "{temperatureC}°C {icon}",
"format-icons": ["", "", ""]
},
"backlight": {
"format": "{percent}% {icon} ",
"format-icons": ["", ""]
},
"battery": {
"states": {
// "good": 95,
"warning": 30,
"critical": 15
},
"format": "{capacity}% {icon} ",
"format-charging": "{capacity}% ",
"format-plugged": "{capacity}% ",
"format-alt": "{time} {icon}",
"tooltip": false,
"format-icons": ["", "", "", "", ""]
},
"network": {
"format-wifi": "{essid} ({signalStrength}%) ",
"format-ethernet": "{ifname}: {ipaddr}/{cidr} ",
"format-linked": "{ifname} (No IP) ",
"format-disconnected": "Disconnected ⚠ ",
"format-alt": "{ifname}: {ipaddr}/{cidr}",
"tooltip": false
},
"pulseaudio": {
"scroll-step": 10, // %, can be a float
"format": "{volume}% {icon} {format_source}",
"format-bluetooth": "{volume}% {icon} {format_source}",
"format-muted": "{volume}% {format_source}",
"format-source": "{volume}% ",
"format-source-muted": "{volume}% ",
"format-icons": {
"headphones": "",
"handsfree": "",
"headset": "",
"phone": "",
"portable": "",
"car": "",
"default": ["", "", ""]
},
"on-click": "pavucontrol"
}
}