b0daea2a73
- theme/colors.css: replace CSS custom properties (--var) with GTK3 @define-color — GTK3 CSS parser rejects -- syntax, crashing waybar - waybar/style.css, wofi/style.css, gtklock/style.css: update var(--x) references to @x to match - waybar/config.jsonc: pin clock timezone to America/Vancouver - niri/config.kdl: change Print to Mod+Print for screenshot keybind Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
86 lines
1.9 KiB
JSON
86 lines
1.9 KiB
JSON
{
|
|
"layer": "top",
|
|
"position": "top",
|
|
"height": 32,
|
|
|
|
"modules-left": ["niri/workspaces"],
|
|
"modules-center": ["clock"],
|
|
"modules-right": ["cpu", "temperature", "custom/power-profile", "custom/fan-profile", "pulseaudio", "network", "battery", "custom/mouse-battery", "tray"],
|
|
"custom/mouse-battery": {
|
|
"exec": "~/.config/waybar/mouse-battery.sh",
|
|
"interval": 60,
|
|
"format": " {output}",
|
|
"tooltip": false
|
|
},
|
|
|
|
"cpu": {
|
|
"format": " {usage}%",
|
|
"format-tooltip": "{usage}% total\n{icon0} {icon1} {icon2} {icon3}\n{icon4} {icon5} {icon6} {icon7}\n{icon8} {icon9} {icon10} {icon11}",
|
|
"format-icons": ["▁", "▂", "▃", "▄", "▅", "▆", "▇", "█"],
|
|
"interval": 3,
|
|
"states": {
|
|
"warning": 60,
|
|
"critical": 85
|
|
}
|
|
},
|
|
|
|
"temperature": {
|
|
"thermal-zone": 0,
|
|
"format": " {temperatureC}°C",
|
|
"critical-threshold": 80,
|
|
"format-critical": " {temperatureC}°C",
|
|
"states": {
|
|
"warm": 60,
|
|
"critical": 80
|
|
}
|
|
},
|
|
|
|
"custom/power-profile": {
|
|
"exec": "~/.local/bin/power-profile",
|
|
"return-type": "json",
|
|
"interval": 30,
|
|
"signal": 8,
|
|
"on-click": "~/.local/bin/power-profile --menu"
|
|
},
|
|
|
|
"custom/fan-profile": {
|
|
"exec": "~/.local/bin/fan-profile",
|
|
"return-type": "json",
|
|
"interval": 5,
|
|
"signal": 9,
|
|
"on-click": "~/.local/bin/fan-profile --menu"
|
|
},
|
|
|
|
"clock": {
|
|
"timezone": "America/Vancouver",
|
|
"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": "⚠",
|
|
"on-click": "networkmanager_dmenu"
|
|
},
|
|
|
|
"pulseaudio": {
|
|
"format": " {volume}%",
|
|
"format-muted": ""
|
|
}
|
|
}
|