From 3480fedbacbaa5f6ce31e245c26b288ae0289d45 Mon Sep 17 00:00:00 2001 From: Karma Riuk Date: Fri, 12 Apr 2024 10:47:16 +0200 Subject: [PATCH] fixed wrong flag --- volumectl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/volumectl b/volumectl index 6f010bf..5215dcd 100755 --- a/volumectl +++ b/volumectl @@ -287,7 +287,7 @@ if [[ "${BASH_SOURCE[0]}" == "${0}" ]]; then #if '__name__' == '__main__' verbose && echo "Detected -s or --set-volume, with argument '$2'" [[ -z "$2" ]] && echo "Error, missing value to set volume" 1>&2 && exit 1 || volume_set $2 ;; - -m|--set-mute) + -m|--mute) verbose && echo "Detected -m or --mute" mute ;;