fix: mute input source instead of unmute
ci / rust (push) Successful in 49s
ci / lint-yaml (push) Successful in 12s

This commit is contained in:
2026-09-06 12:38:33 +02:00
parent d82f5e7d99
commit 897bbf7442
+1 -1
View File
@@ -703,7 +703,7 @@ fn build_action_commands(config: &Config) -> Vec<ActionCommand> {
label: "mute_input", label: "mute_input",
args: vec![], args: vec![],
shell: Some( 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(),
), ),
}); });
} }