Browse Source

Removed "the" from MPRIS commands

It was slightly awkward to say, and probably didn't help recognition
any.
Clara Hobbs 7 years ago
parent
commit
ec1f2b8833
1 changed files with 4 additions and 4 deletions
  1. 4
    4
      kayleevc/plugins/mpris.py

+ 4
- 4
kayleevc/plugins/mpris.py View File

@@ -38,10 +38,10 @@ class Plugin(PluginBase):
38 38
         self.commands = {
39 39
             'next song': self._next,
40 40
             'next video': self._next,
41
-            'pause the music': self._pause,
42
-            'pause the video': self._pause,
43
-            'play the music': self._play,
44
-            'play the video': self._play,
41
+            'pause music': self._pause,
42
+            'pause video': self._pause,
43
+            'play music': self._play,
44
+            'play video': self._play,
45 45
             'previous song': self._previous,
46 46
             'previous video': self._previous
47 47
         }

Loading…
Cancel
Save