guix-dotfiles/home-config/waybar/config

117 lines
3.4 KiB
Plaintext

{
"layer": "bottom",
"position": "top",
"height": 30,
"modules-left": ["wlr/workspaces", "hyprland/submap"],
"modules-center": ["hyprland/window"],
"modules-right": ["tray", "custom/spotify", "custom/weather", "custom/mail", "custom/storage", "backlight", "pulseaudio", "network", "idle_inhibitor", "battery", "clock"],
"hyprland/submap": {
"format": " {}"
},
"wlr/workspaces": {
"format": "{name}",
"disable-scroll": true
},
"hyprland/window": {
"max-length": 80,
"tooltip": false
},
"clock": {
"format": "{:%a %d %b %H:%M}",
"tooltip": false
},
"battery": {
"format": "{capacity}% {icon}",
"format-alt": "{time} {icon}",
"format-icons": ["", "", "", "", ""],
"format-charging": "{capacity}% ",
"interval": 30,
"states": {
"warning": 25,
"critical": 10
},
"tooltip": false,
"bat":"BAT1"
},
"network": {
"format-alt": "{icon}",
"format": "{ipaddr}/{cidr} {icon}",
"format-alt-click": "click-right",
"format-icons": {
"wifi": ["", "" ,""],
"ethernet": [""],
"disconnected": ["睊"]
},
"on-click": "alacritty -e doas nmtui",
"tooltip": false
},
"pulseaudio": {
"format-alt": "{icon}",
"format": "{volume} {icon}",
"format-alt-click": "click-right",
"format-muted": "",
"format-icons": {
"phone": [" ", " ", " ", " "],
"default": ["", "", "", ""]
},
"scroll-step": 1,
"on-click": "pavucontrol",
"tooltip": false
},
"custom/spotify": {
"interval": 2,
"return-type": "json",
"exec": "~/.config/waybar/modules/spotify.sh",
"exec-if": "pgrep spotifyd",
"escape": true,
"on-click": "~/.config/waybar/modules/spotify-play-pause.sh play-pause"
},
"custom/storage": {
"format-alt": "{} ",
"format": "{percentage}% ",
"format-alt-click": "click-right",
"return-type": "json",
"interval": 60,
"exec": "~/.config/waybar/modules/storage.sh"
},
"backlight": {
"format-alt": "{icon}",
"format": "{percent}% {icon}",
"format-alt-click": "click-right",
"format-icons": ["", ""],
"on-scroll-down": "light -A 1",
"on-scroll-up": "light -U 1"
},
"custom/weather": {
"format-alt": "{}",
"format": "{alt}: {}",
"format-alt-click": "click-right",
"interval": 1800,
"return-type": "json",
"on-click": "alacritty --class ala-wttr --hold -e curl https://v2.wttr.in",
"exec": "~/.config/waybar/modules/weather.sh",
"exec-if": "ping wttr.in -c1"
},
"idle_inhibitor": {
"format": "{icon}",
"format-icons": {
"activated": "",
"deactivated": ""
},
"tooltip": false
},
"custom/mail": {
"format": "",
"format-alt": "{alt} ",
"format-alt-click": "click-right",
"interval": 60,
"return-type": "json",
"exec": "~/.config/waybar/modules/mail.py",
"tooltip": false
},
"tray": {
"icon-size": 18
}
}