blob: f15eccadbbe29597b211910df5352dcbc1624671 (
plain)
1
2
3
4
5
6
7
8
|
#!/usr/bin/env bash
# hyprland/workspaces active/visible -> highlighted (white) icon.
# Waybar's 3px white top-border on the active button maps to icon.highlight here.
if [ "$SELECTED" = "true" ]; then
sketchybar --set "$NAME" icon.highlight=on
else
sketchybar --set "$NAME" icon.highlight=off
fi
|