diff options
author | katherine <shmibs@shmibbles.me> | 2018-10-26 05:09:59 -0700 |
---|---|---|
committer | katherine <shmibs@shmibbles.me> | 2018-10-26 05:09:59 -0700 |
commit | ebe0896a3adb13210b84ed3d01946c2f83b6fb3f (patch) | |
tree | 3f2f452a03e52f272b4a8fac8de5f56ca86ededa | |
parent | 8716ab491538b8538e8f1d94b9d604280c5d5847 (diff) | |
download | dotfiles-ebe0896a3adb13210b84ed3d01946c2f83b6fb3f.tar.gz |
add missed closeme
-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 |