Waybar modules: niri + cpu/mem/net/audio + keyboard state

This commit is contained in:
2026-02-09 22:57:05 +11:00
parent 77320e4528
commit 20ef9d0988

View File

@@ -3,11 +3,41 @@
"position": "top",
"height": 32,
"modules-left": ["wlr/workspaces"],
"modules-center": ["clock"],
"modules-right": ["pulseaudio", "network", "tray"],
"modules-left": ["niri/workspaces"],
"modules-center": ["niri/window"],
"modules-right": [
"keyboard-state",
"cpu",
"memory",
"network",
"pulseaudio",
"tray",
"clock"
],
"clock": { "format": "{:%a %d %b %H:%M}" },
"pulseaudio": { "format": " {volume}%" },
"network": { "format-wifi": " {signalStrength}%", "format-ethernet": "󰈀", "format-disconnected": "󰖪" }
"cpu": { "format": " {usage}%" },
"memory": { "format": "󰍛 {percentage}%" },
"network": {
"format-wifi": " {signalStrength}%",
"format-ethernet": "󰈀",
"format-disconnected": "󰖪"
},
"pulseaudio": {
"format": " {volume}%",
"format-muted": "󰖁"
},
"keyboard-state": {
"numlock": true,
"capslock": true,
"format": "{name} {icon}",
"format-icons": {
"locked": "",
"unlocked": ""
}
}
}