dotfiles-guix/home-config/waybar/config

88 lines
2.1 KiB
Text
Raw Normal View History

2023-09-05 03:21:01 +00:00
{
"height": 24,
"spacing": 4,
"modules-left": [
"sway/workspaces",
"sway/window"
],
"modules-center": [],
"modules-right": [
"custom/cmus",
"custom/newsboat",
"cpu",
"memory",
"temperature",
"battery",
"backlight",
"pulseaudio",
"network",
"clock",
"tray"
],
"sway/workspaces": {
"disable-scroll": true,
"all-outputs": true,
"format": "{name}"
},
"tray": {
"spacing": 10
},
"clock": {
"format": "{:%Y-%m-%d %a %H:%M}"
},
"cpu": {
"format": " {usage}%",
"tooltip": false
},
"memory": {
"format": " {}%",
"tooltip": false
},
"temperature": {
"thermal-zone": 10,
"critical-threshold": 80,
"format": " {temperatureC}°"
},
"battery": {
"states": {
"warning": 30,
"critical": 15
},
"format": " {capacity}%",
"format-charging": " {capacity}%",
"format-plugged": " {capacity}%",
"format-full": " {capacity}%",
"format-warning": " {capacity}%",
"format-critical": " {capacity}%"
},
"backlight": {
"format": " {percent}%"
},
"pulseaudio": {
"format": " {volume}%",
"format-bluetooth": " {volume}%",
"format-muted": " muted",
"scroll-step": 1,
"on-click": "pavucontrol",
"ignored-sinks": ["Easy Effects Sink"]
},
"network": {
"interface": "wlp0s20f3",
"format": " disconnected",
"format-wifi": " {essid}",
"format-ethernet": "< {ipaddr}/{cidr}",
"format-disconnected": " disconnected",
"max-length": 50,
"on-click": "nm-connection-editor",
},
"custom/cmus": {
"return-type": "json",
"exec": "$HOME/.config/waybar/custom_cmus.lua 2> /dev/null"
},
"custom/newsboat": {
"format": " {}",
"exec": "$HOME/.config/waybar/custom_newsboat.sh 2> /dev/null",
"on-click": "alacritty -e newsboat -r"
}
}