1
0
Fork 0
forked from wry/wry

config: add fallback output mode

This commit is contained in:
khyperia 2025-12-23 14:57:02 +01:00 committed by Julian Orth
parent a975e3b25a
commit dd3f8bad40
16 changed files with 215 additions and 19 deletions

View file

@ -1627,6 +1627,9 @@ fn load_config(initial_load: bool, auto_reload: bool, persistent: &Rc<Persistent
persistent.seat.set_simple_im_enabled(enabled);
}
}
if let Some(v) = config.fallback_output_mode {
persistent.seat.set_fallback_output_mode(v);
}
}
fn create_command(exec: &Exec) -> Command {