mirror of
https://github.com/josean-dev/dev-environment-files.git
synced 2025-01-09 17:51:20 +01:00
10 lines
245 B
Bash
10 lines
245 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
STATE="$(echo "$INFO" | jq -r '.state')"
|
||
|
if [ "$STATE" = "playing" ]; then
|
||
|
MEDIA="$(echo "$INFO" | jq -r '.title + " - " + .artist')"
|
||
|
sketchybar --set $NAME label="$MEDIA" drawing=on
|
||
|
else
|
||
|
sketchybar --set $NAME drawing=off
|
||
|
fi
|