diff options
-rwxr-xr-x | .config/herbstluftwm/mpc-status.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.config/herbstluftwm/mpc-status.sh b/.config/herbstluftwm/mpc-status.sh index 58b530f..2c1a662 100755 --- a/.config/herbstluftwm/mpc-status.sh +++ b/.config/herbstluftwm/mpc-status.sh @@ -13,12 +13,12 @@ esac mpc status >/dev/null 2>&1 if [[ $? -ne 0 ]]; then - notify-send "mpd disconnected" + notify-send -a closeme "mpd disconnected" exit fi if [[ -z "$(mpc status | grep -E '\[(playing|paused)\]')" ]]; then - notify-send "mpd stopped" + notify-send -a closeme "mpd stopped" exit fi |