From 11f9a87fdafc38d135ee4fc7a17eebfcf430b289 Mon Sep 17 00:00:00 2001 From: Craig Jennings Date: Sun, 25 Jan 2026 14:35:07 -0600 Subject: feat(waybar): implement Hyprland-Rice inspired config Clean minimal design with DWM color scheme: - Transparent bar with solid module groups - Golden accent border (#daa520) - Group/sysmonitor for cpu, memory, disk - Wireplumber audio with click/scroll controls - Hover transitions, box shadows - Berkeley Mono font --- dotfiles/hyprland/.config/waybar/config | 76 ++++++++++++++++++++++----------- 1 file changed, 51 insertions(+), 25 deletions(-) (limited to 'dotfiles/hyprland/.config/waybar/config') diff --git a/dotfiles/hyprland/.config/waybar/config b/dotfiles/hyprland/.config/waybar/config index 3b3a90f..1a867f4 100644 --- a/dotfiles/hyprland/.config/waybar/config +++ b/dotfiles/hyprland/.config/waybar/config @@ -3,48 +3,74 @@ "position": "top", "height": 30, "spacing": 4, + "margin-top": 6, + "margin-left": 10, + "margin-right": 10, - "modules-left": ["hyprland/workspaces"], - "modules-center": ["hyprland/window"], - "modules-right": ["tray", "battery", "disk", "clock"], + "modules-left": [ + "hyprland/workspaces" + ], + "modules-center": [], + "modules-right": [ + "group/sysmonitor", + "tray", + "clock", + "wireplumber" + ], + + "group/sysmonitor": { + "orientation": "horizontal", + "modules": [ + "cpu", + "memory", + "disk" + ] + }, "hyprland/workspaces": { + "disable-scroll": true, + "all-outputs": true, "format": "{name}", - "on-click": "activate", "sort-by-number": true }, - "hyprland/window": { - "format": "{}", - "max-length": 50 + "cpu": { + "interval": 10, + "format": " {}%" }, - "tray": { - "spacing": 10 - }, - - "battery": { - "bat": "BAT0", + "memory": { "interval": 30, - "states": { - "warning": 30, - "critical": 15 - }, - "format": "󱊣 {capacity}% {icon}", - "format-charging": "󱊣 {capacity}% ", - "format-plugged": "󱊣 {capacity}% ", - "format-icons": ["", "", "", "", ""] + "format": " {}%" }, "disk": { "interval": 30, - "format": " {used}/{total}", + "format": " {percentage_used}%", "path": "/" }, + "tray": { + "icon-size": 22, + "spacing": 10 + }, + "clock": { - "interval": 30, - "format": " {:%a %B %d} 󰥔 {:%I:%M %p %Z}", - "tooltip-format": "{calendar}" + "format": "{:%a %d-%m-%Y %I:%M %p}", + "tooltip-format": "{calendar}", + "calendar": { + "format": { + "today": "{}" + } + } + }, + + "wireplumber": { + "format": "{volume}% {icon}", + "format-muted": "Muted 󰝟", + "format-icons": ["", "", ""], + "on-click": "wpctl set-mute @DEFAULT_AUDIO_SINK@ toggle", + "on-scroll-up": "wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%+", + "on-scroll-down": "wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%-" } } -- cgit v1.2.3