-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathSpotify.sh
25 lines (23 loc) · 972 Bytes
/
Spotify.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
DATA=$(osascript -e 'tell application "System Events"
set myList to (name of every process)
end tell
if myList contains "Spotify" then
tell application "Spotify"
if player state is stopped then
set output to "Stopped"
else
set trackname to name of current track
set artistname to artist of current track
set albumname to album of current track
if player state is playing then
set output to "Playing on Spotify:" & "new_line" & trackname & " | " & artistname & " | " & albumname
else if player state is paused then
set output to "Paused on Spotify:" & "new_line" & trackname & " | " & artistname & " | " & albumname
end if
end if
end tell
else
set output to "Spotify is not running"
end if')
echo $DATA | awk -F new_line '{print $1}'
echo $DATA | awk -F new_line '{print $2}'