X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;f=audio%2Fplayers%2Faction;h=6d234bd48ff54fe24b30c52e62e26c77b9303ff1;hb=5d1739a2f680e053827568c8e024efd1d8bb7995;hp=d8bbd159d4885ccb21eec8dc569901aa9616fd53;hpb=6c49eb3eb2c236f0e8e711eec72b32d01d629050;p=audio-cdr-video.git diff --git a/audio/players/action b/audio/players/action index d8bbd15..6d234bd 100755 --- a/audio/players/action +++ b/audio/players/action @@ -19,20 +19,20 @@ elif pgrep deadbeef >/dev/null; then elif [ "$action" = next ]; then exec deadbeef --next elif [ "$action" = pause ]; then - exec deadbeef --toggle-pause + exec deadbeef --play-pause elif [ "$action" = stop ]; then exec deadbeef --stop fi elif pgrep audacious >/dev/null; then if [ "$action" = prev ]; then - exec audacious --rew + exec audtool --playlist-reverse elif [ "$action" = next ]; then - exec audacious --fwd + exec audtool --playlist-advance elif [ "$action" = pause ]; then - exec audacious --play-pause + exec audtool --playback-playpause elif [ "$action" = stop ]; then - exec audacious --stop + exec audtool --playback-stop fi else