Files
dotfiles/waybar/config.jsonc
T
funman300 c6f96bcac8 Add clipboard, idle timeouts, night light, bluetooth, and waybar improvements
- Add cliphist clipboard manager with wofi picker (Mod+Shift+C)
- Add wl-paste watch for clipboard history
- Add swayidle idle timeouts: blank at 5min, lock at 10min
- Add blueman-applet autostart (bluetooth tray)
- Add wlsunset night light for Vancouver (49.2N, 123.1W)
- Add clipboard-picker script and symlink in install.sh
- Waybar: add battery charging format, warning/critical states, tray config
- Waybar CSS: add warning (yellow) and critical (red) battery colors
2026-04-22 16:14:30 -07:00

40 lines
723 B
JSON

{
"layer": "top",
"position": "top",
"height": 32,
"modules-left": ["niri/workspaces"],
"modules-center": ["clock"],
"modules-right": ["pulseaudio", "network", "battery", "tray"],
"clock": {
"format": "{:%a %b %d %H:%M}"
},
"battery": {
"format": "{capacity}% {icon}",
"format-charging": "{capacity}% ",
"format-plugged": "{capacity}% ",
"format-icons": ["","","","",""],
"states": {
"warning": 30,
"critical": 15
}
},
"tray": {
"spacing": 8
},
"network": {
"format-wifi": " {essid}",
"format-ethernet": "󰈀",
"format-disconnected": "⚠"
},
"pulseaudio": {
"format": " {volume}%",
"format-muted": ""
}
}