updated docu

This commit is contained in:
2026-04-03 15:14:49 +02:00
parent 2572928195
commit b2e8d5fc1b
4 changed files with 97 additions and 41 deletions
+1 -3
View File
@@ -131,9 +131,7 @@ fn main() {
}
// Generic module dispatch
// To handle module-specific default targets like "vol up" -> "vol sink up" or "mic up" -> "vol source up"
// Wait, `daemon.rs` `evaluate_module_for_signaler` defaults `vol` to `sink show`.
// If we map `mic` to `["vol", "source"]` in `main.rs` instead of keeping `mic` in daemon:
// Translate module-specific shorthand targets
let (actual_module, actual_args) = if module == "vol" {
let mut new_args = vec!["sink".to_string()];
new_args.extend(cli.args.clone());