1
0
Fork 0
forked from wry/wry

config: workspace display order

This commit is contained in:
Stipe Kotarac 2025-07-26 10:52:46 +02:00 committed by Julian Orth
parent 40328d7c4a
commit e570152dde
17 changed files with 237 additions and 11 deletions

View file

@ -50,6 +50,7 @@ use {
set_tearing_mode, set_vrr_cursor_hz, set_vrr_mode,
},
window::Window,
workspace::set_workspace_display_order,
xwayland::set_x_scaling_mode,
},
run_on_drop::on_drop,
@ -1306,6 +1307,9 @@ fn load_config(initial_load: bool, persistent: &Rc<PersistentState>) {
if let Some(v) = config.middle_click_paste {
set_middle_click_paste_enabled(v);
}
if let Some(v) = config.workspace_display_order {
set_workspace_display_order(v);
}
}
fn create_command(exec: &Exec) -> Command {