style(sketchybar): update background to grey and widen item padding

This commit is contained in:
2026-04-16 10:10:45 -04:00
parent f9abe8023e
commit a758d6b10c

View File

@@ -10,7 +10,7 @@ let
colors = { colors = {
white = "0xddffffff"; white = "0xddffffff";
white_dim = "0x99ffffff"; white_dim = "0x99ffffff";
bg = "0x30000000"; bg = "0x1a808080";
transparent = "0x00000000"; transparent = "0x00000000";
green = "0xff8ceb34"; green = "0xff8ceb34";
yellow = "0xffe8d44d"; yellow = "0xffe8d44d";
@@ -48,12 +48,12 @@ let
sketchybar --default \ sketchybar --default \
icon.font="$NERD_FONT" \ icon.font="$NERD_FONT" \
icon.color=$COLOR_WHITE \ icon.color=$COLOR_WHITE \
icon.padding_left=$PADDING \ icon.padding_left=$(($PADDING + 2)) \
icon.padding_right=2 \ icon.padding_right=2 \
label.font="$FONT_FACE:Medium:13.0" \ label.font="$FONT_FACE:Medium:13.0" \
label.color=$COLOR_WHITE \ label.color=$COLOR_WHITE \
label.padding_left=2 \ label.padding_left=2 \
label.padding_right=$PADDING \ label.padding_right=$(($PADDING + 2)) \
background.color=$COLOR_BG \ background.color=$COLOR_BG \
background.corner_radius=6 \ background.corner_radius=6 \
background.clip=0.5 \ background.clip=0.5 \
@@ -121,7 +121,7 @@ let
elif [ "$VOL" -ge 30 ]; then elif [ "$VOL" -ge 30 ]; then
ICON="󰖀" ICON="󰖀"
elif [ "$VOL" -gt 0 ]; then elif [ "$VOL" -gt 0 ]; then
ICON="" ICON="󰕿"
else else
ICON="󰖁" ICON="󰖁"
fi fi