dotfiles-mirror/config/waybar/config.jsonc

110 lines
2.6 KiB
JSON
Raw Normal View History

2025-10-31 22:14:15 +03:30
{
2025-11-03 15:00:40 +03:30
"position": "bottom",
"layer": "bottom",
2025-10-31 22:14:15 +03:30
"modules-left": [
"niri/workspaces",
"niri/mode",
2025-10-31 22:14:15 +03:30
],
2025-10-31 22:28:42 +03:30
"modules-center": [
],
2025-10-31 22:14:15 +03:30
"modules-right": [
2025-10-31 22:28:42 +03:30
"clock",
"battery",
"pulseaudio",
"network"
2025-10-31 22:14:15 +03:30
],
"pulseaudio": {
"tooltip": false,
"scroll-step": 5,
"format": "VOL {volume}%",
"format-muted": "muted",
"format-icons": {
"default": [
"",
"",
""
]
}
},
"privacy": {
"icon-spacing": 10,
"icon-size": 18,
"transition-duration": 250,
"tooltip": false,
"modules": [
{
"type": "screenshare",
"tooltip": true,
"tooltip-icon-size": 24
},
{
"type": "audio-out",
"tooltip": true,
"tooltip-icon-size": 24
},
{
"type": "audio-in",
"tooltip": true,
"tooltip-icon-size": 24
}
]
},
"bluetooth": {
"format": " {status}",
"format-connected": " CONN",
2025-10-31 22:14:15 +03:30
"tooltip": true,
"on-click": "footclient -e bluetoothctl",
2025-10-31 22:14:15 +03:30
"tooltip-format-connected": "{device_alias}"
},
"clock": {
"format": "TIME {:%I:%M %p}",
2025-10-31 22:14:15 +03:30
"tooltip": true,
"tooltip-format": "{:%a, %b %d, :%I:%M:%S %p}"
2025-10-31 22:14:15 +03:30
},
"niri/workspaces": {
"format": "●",
"persistent-workspaces": {
"1": 1,
"2": 2,
"3": 3,
"4": 4,
"5": 5,
"6": 6,
"7": 7,
"8": 8,
"9": 9
},
2025-10-31 22:14:15 +03:30
},
"niri/window": {
2025-10-31 22:14:15 +03:30
"icon": false,
"icon-size": 20
},
"niri/mode": {
"format": "<span style=\"italic\">{}</span>"
},
2025-10-31 22:14:15 +03:30
"network": {
"interface": "wlo1",
// "interface": "eno1",
2025-10-31 22:28:42 +03:30
"format-wifi": "WLAN {essid}",
"format-ethernet": "ETH {ipaddr}/{cidr}",
2025-10-31 22:14:15 +03:30
"format-disconnected": "disconnected",
"tooltip": true,
"tooltip-format": "Click to copy",
"max-length": 50,
"on-click": "sh -c 'ip addr show eno1 | grep \"inet \" | awk \"{print \\$2}\" | sed \"s#/.*##\" | wl-copy'"
2025-10-31 22:14:15 +03:30
},
"battery": {
"format": "BAT {capacity}%",
2025-10-31 22:14:15 +03:30
"interval": 10,
"states": {
"warning": 20,
"critical": 10
},
"format-time": "{H}:{m}",
"format-charging": "BAT {capacity}%",
"format-discharging": "BAT {capacity}%",
2025-10-31 22:14:15 +03:30
"tooltip-format": "{power}W, {cycles} cycles"
2025-09-25 04:08:48 +03:30
}
2025-08-02 11:43:36 +03:30
}
2025-10-31 22:28:42 +03:30