1
1
mirror of https://github.com/wez/wezterm.git synced 2024-11-22 22:42:48 +03:00

expand tiling_desktop_environments list

This commit is contained in:
Wez Furlong 2023-04-17 22:35:02 -07:00
parent 87cd9c5f6c
commit 1e8fd7a95b
No known key found for this signature in database
GPG Key ID: 7A7F66A31EC9B387
2 changed files with 6 additions and 1 deletions

View File

@ -1677,7 +1677,10 @@ fn default_max_fps() -> u8 {
}
fn default_tiling_desktop_environments() -> Vec<String> {
["X11 bspwm"].iter().map(|s| s.to_string()).collect()
["X11 LG3D", "X11 bspwm", "X11 dwm"]
.iter()
.map(|s| s.to_string())
.collect()
}
fn default_stateless_process_list() -> Vec<String> {

View File

@ -11,7 +11,9 @@ The default value for this option is:
```lua
config.tiling_desktop_environments = {
'X11 LG3D',
'X11 bspwm',
'X11 dwm',
}
```