From 83e32103a7b2768b4973a66d5047683cde08af77 Mon Sep 17 00:00:00 2001 From: Tom Date: Tue, 21 May 2019 19:06:45 +0200 Subject: [PATCH] Fix i3bar when vol module click & changing vol --- .local/bin/statusbar/volume | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.local/bin/statusbar/volume b/.local/bin/statusbar/volume index 3bbb32b1..8b8ea747 100755 --- a/.local/bin/statusbar/volume +++ b/.local/bin/statusbar/volume @@ -1,7 +1,7 @@ #!/bin/sh case $BLOCK_BUTTON in - 1) setsid "$TERMINAL" -e pulsemixer & ;; + 1) setsid "$TERMINAL" -e pulsemixer; pkill -RTMIN+10 i3blocks & ;; 2) pulsemixer --toggle-mute ;; 4) pulsemixer --change-volume +5 ;; 5) pulsemixer --change-volume -5 ;;