dots/stow/.config/sketchybar/plugins/space.sh
Nico 62740c2b4c
sketchybar: fix focused native space status
just took the one from aerospace, and like they are not the same thing.
who knew.
2025-10-20 01:05:01 +11:00

10 lines
357 B
Bash
Executable file

#!/usr/bin/env bash
SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
source $SCRIPT_DIR/../colours.sh
if [ $SELECTED = 'true' ]; then
sketchybar --set $NAME background.color=$PRIMARY_COLOUR label.color=$BACKGROUND_COLOUR
else
sketchybar --set $NAME background.color=$BACKGROUND_COLOUR label.color=$PRIMARY_COLOUR
fi