1
1
mirror of https://github.com/wez/wezterm.git synced 2024-12-23 13:21:38 +03:00

add i3 to default tiling_desktop_environments

This commit is contained in:
Wez Furlong 2023-05-17 06:34:45 -07:00
parent c9dd21618e
commit 6bcb8eed56
No known key found for this signature in database
GPG Key ID: 7A7F66A31EC9B387
2 changed files with 2 additions and 1 deletions

View File

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

View File

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