diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/mpris.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mpris.c b/src/mpris.c index 6d9db1b..936900e 100644 --- a/src/mpris.c +++ b/src/mpris.c @@ -137,6 +137,10 @@ dbus_update(void) log_info("MPRIS: Method %s\n", method); if (!strcmp(method, "PlayPause")) { player_toggle_pause(); + } else if (!strcmp(method, "Pause")) { + player_pause(); + } else if (!strcmp(method, "Play")) { + player_play(); } else if (!strcmp(method, "Next")) { player_next(); } else if (!strcmp(method, "Previous")) { |
