mirror of
https://github.com/FelixKratz/SketchyBar
synced 2024-11-10 13:54:16 +00:00
9 lines
252 B
Bash
Executable file
9 lines
252 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
echo "Ich heiße: $NAME und bin $SELECTED";
|
|
|
|
if [ "$SELECTED" = "true" ]; then
|
|
sketchybar -m batch --set $NAME label_highlight=on icon_highlight=on
|
|
else
|
|
sketchybar -m batch --set $NAME label_highlight=off icon_highlight=off
|
|
fi
|