From 7a06e25713a7feac437e1079fb7292076d37372f Mon Sep 17 00:00:00 2001 From: Beau Hastings Date: Sun, 11 Oct 2020 14:27:49 +0800 Subject: [PATCH] fix: muted in statusbar is delayed when using xosd Signed-off-by: Beau Hastings --- volume | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/volume b/volume index 44d5fdf..7c2f503 100755 --- a/volume +++ b/volume @@ -330,7 +330,7 @@ notify_muted() { case "$notification_method" in xosd) local delay=$(($expires / 1000)) - osd_cat --align center -b percentage -P 0 -d $delay -p top -A center -c "$COLOR_MUTED" -T "Volume muted" -O 2 -u "$COLOR_XOSD_OUTLINE" + osd_cat --align center -b percentage -P 0 -d $delay -p top -A center -c "$COLOR_MUTED" -T "Volume muted" -O 2 -u "$COLOR_XOSD_OUTLINE" & ;; # There is a patch with a notify-send script for herbe, not in the current version at this time but would make this option irrelevant. See https://github.com/dudik/herbe/pull/10