diff options
| author | TheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com> | 2025-08-23 12:42:37 +0900 |
|---|---|---|
| committer | TheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com> | 2025-08-23 12:42:37 +0900 |
| commit | 07d294425a98ee5d1e22d03e2b24ae2c76e487c0 (patch) | |
| tree | a6818f0d64438c5fdb88b00a35d944f80c056213 /mac/.config/sketchybar.mon/items/spotify.sh | |
| parent | 6fc28cdb3529ca8ee864cb5c41674cb0a4af72a1 (diff) | |
updates
Diffstat (limited to 'mac/.config/sketchybar.mon/items/spotify.sh')
| -rwxr-xr-x | mac/.config/sketchybar.mon/items/spotify.sh | 201 |
1 files changed, 201 insertions, 0 deletions
diff --git a/mac/.config/sketchybar.mon/items/spotify.sh b/mac/.config/sketchybar.mon/items/spotify.sh new file mode 100755 index 0000000..421e299 --- /dev/null +++ b/mac/.config/sketchybar.mon/items/spotify.sh @@ -0,0 +1,201 @@ +#!/bin/bash + +SPOTIFY_EVENT="com.spotify.client.PlaybackStateChanged" +POPUP_SCRIPT="sketchybar -m --set spotify.anchor popup.drawing=toggle" + +spotify_anchor=( + script="$PLUGIN_DIR/spotify.sh" + click_script="$POPUP_SCRIPT" + popup.horizontal=on + popup.align=center + popup.height=150 + icon= + icon.font="$FONT:Regular:25.0" + label.drawing=off + drawing=off +) + +spotify_cover=( + script="$PLUGIN_DIR/spotify.sh" + click_script="open -a 'Spotify'; $POPUP_SCRIPT" + label.drawing=off + icon.drawing=off + padding_left=12 + padding_right=10 + background.image.scale=0.2 + background.image.drawing=on + background.drawing=on + background.image.corner_radius=9 + shadow=on +) + +spotify_title=( + icon.drawing=off + padding_left=0 + padding_right=0 + width=0 + label.font="$FONT:Heavy:15.0" + label.max_chars=20 + y_offset=55 +) + +spotify_artist=( + icon.drawing=off + y_offset=30 + padding_left=0 + padding_right=0 + width=0 + label.max_chars=20 +) + +spotify_album=( + icon.drawing=off + padding_left=0 + padding_right=0 + y_offset=15 + width=0 + label.max_chars=25 +) + +spotify_state=( + icon.drawing=on + icon.font="$FONT:Light Italic:10.0" + icon.width=35 + icon="00:00" + label.drawing=on + label.font="$FONT:Light Italic:10.0" + label.width=35 + label="00:00" + padding_left=0 + padding_right=0 + y_offset=-15 + width=0 + slider.background.height=6 + slider.background.corner_radius=1 + slider.background.color=$GREY + slider.highlight_color=$GREEN + slider.percentage=40 + slider.width=115 + script="$PLUGIN_DIR/spotify.sh" + update_freq=1 + updates=when_shown +) + +spotify_shuffle=( + icon= + icon.padding_left=5 + icon.padding_right=5 + icon.color=$BLACK + icon.highlight_color=$GREY + label.drawing=off + script="$PLUGIN_DIR/spotify.sh" + y_offset=-45 +) + +spotify_back=( + icon= + icon.padding_left=5 + icon.padding_right=5 + icon.color=$BLACK + script="$PLUGIN_DIR/spotify.sh" + label.drawing=off + y_offset=-45 +) + +spotify_play=( + icon= + background.height=40 + background.corner_radius=20 + width=40 + align=center + background.color=$POPUP_BACKGROUND_COLOR + background.border_color=$WHITE + background.border_width=0 + background.drawing=on + icon.padding_left=4 + icon.padding_right=5 + updates=on + label.drawing=off + script="$PLUGIN_DIR/spotify.sh" + y_offset=-45 +) + +spotify_next=( + icon= + icon.padding_left=5 + icon.padding_right=5 + icon.color=$BLACK + label.drawing=off + script="$PLUGIN_DIR/spotify.sh" + y_offset=-45 +) + +spotify_repeat=( + icon= + icon.highlight_color=$GREY + icon.padding_left=5 + icon.padding_right=10 + icon.color=$BLACK + label.drawing=off + script="$PLUGIN_DIR/spotify.sh" + y_offset=-45 +) + +spotify_controls=( + background.color=$GREEN + background.corner_radius=11 + background.drawing=on + y_offset=-45 +) + +sketchybar --add event spotify_change $SPOTIFY_EVENT \ + --add item spotify.anchor center \ + --set spotify.anchor "${spotify_anchor[@]}" \ + --subscribe spotify.anchor mouse.entered mouse.exited \ + mouse.exited.global \ + \ + --add item spotify.cover popup.spotify.anchor \ + --set spotify.cover "${spotify_cover[@]}" \ + \ + --add item spotify.title popup.spotify.anchor \ + --set spotify.title "${spotify_title[@]}" \ + \ + --add item spotify.artist popup.spotify.anchor \ + --set spotify.artist "${spotify_artist[@]}" \ + \ + --add item spotify.album popup.spotify.anchor \ + --set spotify.album "${spotify_album[@]}" \ + \ + --add slider spotify.state popup.spotify.anchor \ + --set spotify.state "${spotify_state[@]}" \ + --subscribe spotify.state mouse.clicked \ + \ + --add item spotify.shuffle popup.spotify.anchor \ + --set spotify.shuffle "${spotify_shuffle[@]}" \ + --subscribe spotify.shuffle mouse.clicked \ + \ + --add item spotify.back popup.spotify.anchor \ + --set spotify.back "${spotify_back[@]}" \ + --subscribe spotify.back mouse.clicked \ + \ + --add item spotify.play popup.spotify.anchor \ + --set spotify.play "${spotify_play[@]}" \ + --subscribe spotify.play mouse.clicked spotify_change \ + \ + --add item spotify.next popup.spotify.anchor \ + --set spotify.next "${spotify_next[@]}" \ + --subscribe spotify.next mouse.clicked \ + \ + --add item spotify.repeat popup.spotify.anchor \ + --set spotify.repeat "${spotify_repeat[@]}" \ + --subscribe spotify.repeat mouse.clicked \ + \ + --add item spotify.spacer popup.spotify.anchor \ + --set spotify.spacer width=5 \ + \ + --add bracket spotify.controls spotify.shuffle \ + spotify.back \ + spotify.play \ + spotify.next \ + spotify.repeat \ + --set spotify.controls "${spotify_controls[@]}" |
