From 98b8616151500040a202adf11dcb9124be133351 Mon Sep 17 00:00:00 2001 From: Crony Akatsuki Date: Mon, 1 Aug 2022 17:51:43 +0200 Subject: [PATCH] added slock support. --- dmenu-playerctl | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/dmenu-playerctl b/dmenu-playerctl index 5372f37..7152a86 100755 --- a/dmenu-playerctl +++ b/dmenu-playerctl @@ -6,13 +6,35 @@ source $HOME/.config/dmenu/config command="$@" +[ -z "$command" ] && exit instances=$(playerctl -l | wc -l) +slock=$(ps -C slock | sed -n '1!p' | awk '{ print $4 }' | sed 's/slock/running/') + if [ "$instances" = "0" ]; then exit elif [ "$instances" -lt "2" ]; then playerctl $command +elif [ "$slock" == "running" ]; then + if [ "$command" == "play-pause" ]; then + if playerctl status -a | grep -i "Playing" > /dev/null; then + playerctl pause -a + else + playerctl -p mpd $command + fi + exit + fi + + players=$(paste <(playerctl -l) <(playerctl status -a) | grep -v -i mpd | awk '{print $1}') + if [ ! -z "$players" ]; then + for player in $players; do + playerctl -p $player pause + done + fi + + playerctl -p mpd $command else choice=$(playerctl -l | $DMENU -p 'Manage:') + [ -z "$choice" ] && exit playerctl -p $choice $command fi