hyprcrux/.config/waybar/config-taskbar
2024-02-15 23:42:14 -05:00

69 lines
2.7 KiB
Text

{
"layer": "top", // Waybar at top layer
"position": "bottom", // Waybar position (top|bottom|left|right)
"height": 30, // Waybar height (to be removed for auto height)
// "width": 1280, // Waybar width
// "spacing": 2, // Gaps between modules (4px)
// Choose the order of the modules
"modules-left": ["wlr/taskbar"],
"modules-center": ["custom/playerctl", "custom/playerlabel"],
"modules-right": ["custom/updates", "custom/power"],
// Modules configuration
"wlr/taskbar": {
"format": "{icon}",
"icon-size": 15,
//"icon-theme": "Numix-Circle",
"tooltip-format": "{title}",
"on-click": "activate",
"on-click-middle": "close"
},
"custom/power": {
"format": " ⏻ ",
"tooltip": false,
"on-click": "wlogout --protocol layer-shell"
},
"custom/updates": {
"exec": "~/.config/hypr/scripts/systemupdate.sh",
"return-type": "json",
"format": "󰮯 {}",
"on-click": "~/.config/hypr/scripts/systemupdate.sh up",
"interval": 86400, // once every day
"tooltip": true,
},
"tray": {
// "icon-size": 21,
"spacing": 10
},
"custom/playerctl": {
"format": "{icon}",
"return-type": "json",
"max-length": 64,
"exec": "playerctl -a metadata --format '{\"text\": \"{{artist}} - {{markup_escape(title)}}\", \"tooltip\": \"{{playerName}} : {{markup_escape(title)}}\", \"alt\": \"{{status}}\", \"class\": \"{{status}}\"}' -F",
"on-click-middle": "playerctl play-pause",
"on-click": "playerctl previous",
"on-click-right": "playerctl next",
"format-icons": {
"Playing": "<span foreground='#FFFFFF'>󰒮 󰐌 󰒭</span>",
"Paused": "<span foreground='#FFFFFF'>󰒮 󰏥 󰒭</span>"
},
},
"custom/playerlabel": {
"format": "<span>{}</span>",
"return-type": "json",
"max-length": 40,
"exec": "playerctl -a metadata --format '{\"text\": \"{{artist}} - {{markup_escape(title)}}\", \"tooltip\": \"{{playerName}} : {{markup_escape(title)}}\", \"alt\": \"{{status}}\", \"class\": \"{{status}}\"}' -F",
"on-click-middle": "playerctl play-pause",
"on-click": "playerctl previous",
"on-click-right": "playerctl next",
"format-icons": {
"Playing": "<span foreground='#E5B9C6'>󰒮 󰐌 󰒭</span>",
"Paused": "<span foreground='#928374'>󰒮 󰏥 󰒭</span>"
},
"clock": {
"format": "<span foreground='#C6AAE8'> </span>{:%H:%M}",
"tooltip-format": "<big>{:%Y %B}</big>\n<tt><small>{calendar}</small></tt>"
},
},
}