9 lines
170 B
Bash
9 lines
170 B
Bash
|
#!/usr/bin/env sh
|
||
|
|
||
|
WIDTH="dynamic"
|
||
|
if [ "$SELECTED" = "true" ]; then
|
||
|
WIDTH="0"
|
||
|
fi
|
||
|
|
||
|
sketchybar --animate tanh 20 --set $NAME icon.highlight=$SELECTED label.width=$WIDTH
|