dotfiles/.config/waybar/config

79 lines
2.0 KiB
Plaintext

{
"layer": "top",
"position": "top",
"height": 24,
"spacing": 4,
"modules-left": [
"hyprland/workspaces",
"hyprland/submap",
],
"modules-center": [
"sway/window"
],
"modules-right": [
"pulseaudio",
"cpu",
"memory",
"battery",
"clock",
"tray",
"custom/power"
],
"hyprland/workspaces": {
"all-outputs": false,
"format": "{name}",
},
"hyprland/submap": {
"format": "<span style=\"italic\">{}</span>"
},
"clock": {
"tooltip-format": "<big>{:%Y %B}</big>\n<tt><small>{calendar}</small></tt>",
"format" : "{:%d.%m.%Y %T}",
"interval" : 1
},
"cpu": {
"format": "{usage}% ",
"tooltip": false
},
"memory": {
"format": "{}% "
},
"battery": {
"states": {
"good": 95,
"warning": 30,
"critical": 15
},
"format": "{capacity}% {icon}",
"format-charging": "{capacity}% 󱐋",
"format-plugged": "{capacity}% ",
"format-icons": ["", "", "", "", ""]
},
},
"pulseaudio": {
"format": "{volume}% {icon} {format_source}",
"format-muted": "󰝟 {format_source}",
"format-bluetooth": "{volume}% {icon}  {format_source}",
"format-bluetooth-muted": "󰝟 {icon}  {format_source}",
"format-source": "{volume}% ",
"format-source-muted": "",
"format-icons": {
"headphone": "",
"default": ["", "", ""]
},
"on-click": "pavucontrol"
},
"custom/power": {
"format" : "⏻ ",
"tooltip": false,
"menu": "on-click",
"menu-file": "$HOME/.config/waybar/power_menu.xml", // Menu file in resources folder
"menu-actions": {
"shutdown": "shutdown",
"reboot": "reboot",
"suspend": "systemctl suspend",
"hibernate": "systemctl hibernate"
}
}
}