From 897bbf744243330a8aa1279cea62a6b4cba9b6b9 Mon Sep 17 00:00:00 2001 From: mr-forust Date: Sun, 6 Sep 2026 12:38:33 +0200 Subject: [PATCH] fix: mute input source instead of unmute --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index d154236..1ae6b7f 100644 --- a/src/main.rs +++ b/src/main.rs @@ -703,7 +703,7 @@ fn build_action_commands(config: &Config) -> Vec { label: "mute_input", args: vec![], shell: Some( - "wpctl set-mute @DEFAULT_AUDIO_SOURCE@ 0 || pactl set-source-mute @DEFAULT_SOURCE@ 1".to_string(), + "wpctl set-mute @DEFAULT_AUDIO_SOURCE@ 1 || pactl set-source-mute @DEFAULT_SOURCE@ 1".to_string(), ), }); }