Skip to content

Instantly share code, notes, and snippets.

@wzxu
wzxu / nowplaying.sh
Last active April 23, 2025 16:59
Sample setup of using AppleScript to watch for Spotify change to trigger sketchybar event
#!/usr/bin/env bash
if [[ "$STATE" == "playing" ]]; then
if [[ -n "$ARTWORK_URL" ]]; then
# Get 64x64 image instead of 640x640
if [[ "$ARTWORK_URL" == *"ab67616d0000b273"* ]]; then
ARTWORK_URL="${ARTWORK_URL//ab67616d0000b273/ab67616d00004851}"
fi
IMAGE_PATH="/tmp/$(basename "$ARTWORK_URL").jpeg"