Skip to content

Commit

Permalink
Truncate artist/title even when paused
Browse files Browse the repository at this point in the history
  • Loading branch information
dallinski committed Jan 14, 2020
1 parent 83e3174 commit 760c2f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MacOS/MTMR/mtmr_spotify_widget_title.applescript
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ if application "Spotify" is running then
if player state is playing then
return my FormatArtistAndTrack((get artist of current track) & " - " & (get name of current track)) & " (" & my FormatSeconds(get player position as integer) & "/" & my FormatSeconds(my MillisToSeconds(get duration of current track)) & ")"
else
return (get artist of current track) & " - " & (get name of current track) & ""
return my FormatArtistAndTrack((get artist of current track) & " - " & (get name of current track)) & ""
end if
end tell
else
Expand Down

0 comments on commit 760c2f7

Please sign in to comment.