Skip to content
This repository has been archived by the owner on Oct 21, 2020. It is now read-only.

Commit

Permalink
Fixes PlayPause
Browse files Browse the repository at this point in the history
My keyboard outputs Pause for the play/pause key so I updated the conditions to meet.
  • Loading branch information
scott-joe committed Feb 23, 2016
1 parent c9b9bed commit 8e42f19
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions bin/spotify
Expand Up @@ -61,6 +61,9 @@ class MediaKeysHandler(Handler):

elif key == "Play":
self.spotify.PlayPause()

elif key == "Pause":
self.spotify.PlayPause()

elif key == "Stop":
self.spotify.Stop()
Expand Down

0 comments on commit 8e42f19

Please sign in to comment.