From f854a0fedf29659f14093f0b297b24c7b8303b33 Mon Sep 17 00:00:00 2001 From: Vincent Bernat Date: Fri, 15 Oct 2021 19:48:59 +0200 Subject: [PATCH] rofi-mediaplayer: replace play-pause with play While media keys often don't have a pause button, this is not the case for the rofi menu. --- bin/rofi-mediaplayer | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/rofi-mediaplayer b/bin/rofi-mediaplayer index 78a73e4..f5f4e50 100755 --- a/bin/rofi-mediaplayer +++ b/bin/rofi-mediaplayer @@ -51,7 +51,7 @@ EOF 1) case $ROFI_INFO in 1) playerctl -p $mediaplayer previous ;; - 2) playerctl -p $mediaplayer play-pause ;; + 2) playerctl -p $mediaplayer play ;; 3) playerctl -p $mediaplayer pause ;; 4) playerctl -p $mediaplayer stop ;; 5) playerctl -p $mediaplayer next ;;