From cc3ee2cc92f17988360f987b3020588fdc33c78f Mon Sep 17 00:00:00 2001 From: elena Date: Wed, 26 Dec 2018 18:11:47 +0200 Subject: [PATCH] fixed clean up script so than on restart it correctly kills the mpv idleloop command that monitors mpd events --- config/awesome/awesome-cleanup.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/config/awesome/awesome-cleanup.sh b/config/awesome/awesome-cleanup.sh index a6d5492..60569df 100755 --- a/config/awesome/awesome-cleanup.sh +++ b/config/awesome/awesome-cleanup.sh @@ -7,6 +7,7 @@ # This script cleans up the old processes. # Mpd widget -ps aux | grep "mpc idle player" | grep -v grep | awk '{print $2}' | xargs kill +#ps aux | grep "mpc idle player" | grep -v grep | awk '{print $2}' | xargs kill +ps aux | grep "mpc idleloop player" | grep -v grep | awk '{print $2}' | xargs kill # Volume widget ps aux | grep "pactl subscribe" | grep -v grep | awk '{print $2}' | xargs kill