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
|
{
"layer": "top",
"height": 25,
"modules-left": [
"sway/workspaces",
"sway/mode"
],
"modules-center": [
"sway/window"
],
"modules-right": [
"network#wlan0",
"bluetooth",
"battery",
"battery#bat2",
"clock"
],
"sway/window": {
"max-length": 50
},
"battery": {
"bat": "BAT0",
"format": "{capacity}% {icon}",
"format-icons": ["", "", "", "", ""]
},
"battery#bat2": {
"bat": "BAT1",
"format": "{capacity}% {icon}",
"format-icons": ["", "", "", "", ""]
},
"clock": {
"interval": 60,
"format": "KW {:%V %a %Y-%m-%d %H:%M UTC%z}",
"max-length": 50
},
"bluetooth": {
"on-click": "foot bluetoothctl",
"format": " {status}",
"format-disabled": "",
"format-connected": " {num_connections} connected",
"tooltip-format": "{controller_alias}\t{controller_address}",
"tooltip-format-connected": "{controller_alias}\t{controller_address}\n\n{device_enumerate}",
"tooltip-format-enumerate-connected": "{device_alias}\t{device_address}"
},
"network#wlan0": {
"interface": "wlan0",
"format-wifi": " {essid} ({signalStrength}%)",
"format-disconnected": "",
"tooltip-format": "{ifname}",
"max-length": 50
}
}
|