fix: mute_input always mutes instead of toggling
release / verify (push) Successful in 20s
release / linux-amd64 (push) Failing after 28s

This commit is contained in:
2026-08-07 08:31:12 +02:00
parent d0841d2c9b
commit 1fdf46e42a
5 changed files with 11 additions and 4 deletions
+1 -1
View File
@@ -703,7 +703,7 @@ fn build_action_commands(config: &Config) -> Vec<ActionCommand> {
label: "mute_input",
args: vec![],
shell: Some(
"wpctl set-mute @DEFAULT_AUDIO_SOURCE@ toggle || pactl set-source-mute @DEFAULT_SOURCE@ toggle".to_string(),
"wpctl set-mute @DEFAULT_AUDIO_SOURCE@ 0 || pactl set-source-mute @DEFAULT_SOURCE@ 1".to_string(),
),
});
}