aboutsummaryrefslogtreecommitdiff
path: root/wiki/Application-Issues.md
diff options
context:
space:
mode:
authorIvan Molodetskikh <yalterz@gmail.com>2024-03-25 21:13:36 +0400
committerIvan Molodetskikh <yalterz@gmail.com>2024-03-25 21:16:03 +0400
commitcf54f75113c69a21cca5ec7e346a12e46298b8c0 (patch)
tree17c1bfe47876fe18d9ead183eec5c0535e9e3bf8 /wiki/Application-Issues.md
parent0d90876ad8510fccf7994b7a113778330644b64d (diff)
downloadniri-cf54f75113c69a21cca5ec7e346a12e46298b8c0.tar.gz
niri-cf54f75113c69a21cca5ec7e346a12e46298b8c0.tar.bz2
niri-cf54f75113c69a21cca5ec7e346a12e46298b8c0.zip
Move wiki into the main repository
Diffstat (limited to 'wiki/Application-Issues.md')
-rw-r--r--wiki/Application-Issues.md30
1 files changed, 30 insertions, 0 deletions
diff --git a/wiki/Application-Issues.md b/wiki/Application-Issues.md
new file mode 100644
index 00000000..695a3f24
--- /dev/null
+++ b/wiki/Application-Issues.md
@@ -0,0 +1,30 @@
+### VSCode
+
+There seems to be a bug in VSCode's Wayland backend until 1.86.0 which causes the window to not show up when using server-side decorations. So, to run VSCode:
+
+1. Make sure VSCode is 1.86.0 or above, or that `prefer-no-csd` is **not set** in the niri config
+2. Run `code --ozone-platform-hint=auto --enable-features=WaylandWindowDecorations`
+
+Also, if you're having issues with some VSCode hotkeys, try starting `Xwayland` and setting the `DISPLAY=:0` environment variable for VSCode. That is, still running VSCode with the Wayland backend, but with `DISPLAY` set to a running Xwayland instance. Apparently, VSCode currently unconditionally queries the X server for a keymap.
+
+### Chromium
+
+When creating new windows within Chromium (e.g. with <kbd>Ctrl</kbd><kbd>N</kbd>), there's a Chromium bug with sizing:
+
+- With CSD (`prefer-no-csd` unset), the window will be a bit smaller than needed
+- With SSD (`prefer-no-csd` set), the window buffer will be offset to the top-left
+
+Both of these can be fixed by resizing the new Chromium window.
+
+### WezTerm
+
+There's [a bug](https://github.com/wez/wezterm/issues/4708) in WezTerm that it waits for a zero-sized Wayland configure event, so its window never shows up in niri. To work around it, put this window rule in the niri config (included in the default config):
+
+```
+window-rule {
+ match app-id=r#"^org\.wezfurlong\.wezterm$"#
+ default-column-width {}
+}
+```
+
+This empty default column width lets WezTerm pick its own initial width which makes it show up properly. \ No newline at end of file