From 7865c989c198243ddb5a89df88a7edfdb105b269 Mon Sep 17 00:00:00 2001 From: Barrett Ruth Date: Sat, 14 Feb 2026 12:21:39 -0500 Subject: [PATCH] fix(waybar): spacing --- home/modules/ui.nix | 29 ----------------------------- scripts/hypr | 8 ++++---- 2 files changed, 4 insertions(+), 33 deletions(-) diff --git a/home/modules/ui.nix b/home/modules/ui.nix index 4f63127..e8efe60 100644 --- a/home/modules/ui.nix +++ b/home/modules/ui.nix @@ -163,35 +163,6 @@ in border-radius: 0; min-height: 0; } - - #workspaces button { - padding: 0 6px; - min-width: 24px; - } - - #language { - padding: 0 8px; - } - - #privacy, - #tray, - #pulseaudio, - #network, - #battery { - padding: 0 12px; - } - - #clock { - padding: 0 14px 0 12px; - } - - #window { - padding: 0 16px; - } - - tooltip { - border-radius: 4px; - } ''; }; diff --git a/scripts/hypr b/scripts/hypr index 6db737a..04b15a8 100755 --- a/scripts/hypr +++ b/scripts/hypr @@ -53,11 +53,11 @@ brightness) case "$1" in up) brightnessctl set "$BRIGHT_STEP"%+ - notify-send -u low -t 2500 -r 5555 "brightness $(brightnessctl get | awk -v max="$max_brightness" '{printf "%d%%", $1*100/max}')" + notify-send -t 2500 -r 5555 "brightness $(brightnessctl get | awk -v max="$max_brightness" '{printf "%d%%", $1*100/max}')" ;; down) brightnessctl set "$BRIGHT_STEP"%- - notify-send -u low -t 2500 -r 5555 "brightness $(brightnessctl get | awk -v max="$max_brightness" '{printf "%d%%", $1*100/max}')" + notify-send -t 2500 -r 5555 "brightness $(brightnessctl get | awk -v max="$max_brightness" '{printf "%d%%", $1*100/max}')" ;; *) echo "Invalid subcommand: $1" >&2 @@ -89,9 +89,9 @@ volume) vol=$(get_vol) if wpctl get-volume "$SINK" | grep -q MUTED; then - notify-send -u low -t 2500 -r 5556 "volume: ${vol}% (muted)" + notify-send -t 2500 -r 5556 "volume: ${vol}% (muted)" else - notify-send -u low -t 2500 -r 5556 "volume: ${vol}%" + notify-send -t 2500 -r 5556 "volume: ${vol}%" fi ;; pull)