Skip to content

Commit

Permalink
add X11 Qtile to tiling_desktop_environments
Browse files Browse the repository at this point in the history
closes: wez#5415
  • Loading branch information
wez authored and saep committed Jul 14, 2024
1 parent 5d81321 commit 549d69a
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions config/src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1735,10 +1735,17 @@ fn default_max_fps() -> u8 {
}

fn default_tiling_desktop_environments() -> Vec<String> {
["X11 LG3D", "X11 bspwm", "X11 i3", "X11 dwm", "X11 awesome"]
.iter()
.map(|s| s.to_string())
.collect()
[
"X11 LG3D",
"X11 Qtile",
"X11 awesome",
"X11 bspwm",
"X11 dwm",
"X11 i3",
]
.iter()
.map(|s| s.to_string())
.collect()
}

fn default_stateless_process_list() -> Vec<String> {
Expand Down

0 comments on commit 549d69a

Please sign in to comment.