From 8e42f193a65cf3d40a27fbc5a0d99f35db78335f Mon Sep 17 00:00:00 2001 From: Scott Williams Date: Tue, 23 Feb 2016 17:46:18 -0500 Subject: [PATCH] Fixes PlayPause My keyboard outputs Pause for the play/pause key so I updated the conditions to meet. --- bin/spotify | 3 +++ 1 file changed, 3 insertions(+) diff --git a/bin/spotify b/bin/spotify index f803a6f..455e5a5 100755 --- a/bin/spotify +++ b/bin/spotify @@ -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()