Replies: 1 comment
-
|
Hi! It sounds like you are running into an issue related to dialog handling in VSCodium/VSCode on i3 WM. This is a known problem sometimes caused by the combination of Wayland/X11 settings, GTK versions, or the window manager not allowing modal dialogs to open correctly. Here’s how you can debug and potentially fix it: 1. Check the logsYou can start VSCodium from a terminal to see error messages: codium --verboseor check the main log file if it exists: ~/.config/VSCodium/logs/Look for entries related to dialogs or GTK errors. 2. Test with a clean profileSometimes extensions or settings can interfere. Try running: codium --user-data-dir /tmp/vscodium-testThen try opening a file or saving as. If it works, the problem is likely in your config or extensions. 3. Check window manager / GTK issues
env GDK_BACKEND=x11 codium
sudo pacman -Syu gtk3 gtk44. Try alternative dialog handling
export VSCODE_USE_X11=true
codiumThis forces the app to use X11 dialogs instead of any Wayland/GTK ones that may misbehave. Summary:
These steps should help you identify the underlying cause and provide logs for further help. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I have had an issue for the last few days, where vscodium on my system does not open any dialogs. When I want to open a file, trying 3 different options (file menu -> open file, Ctrl + O, and entering "open file" in the command palette), nothing happens. Same goes for the "Save as" menu.
What could cause this? Also, is there a way I could find error logs or something like that, so that I can provide more information?
I am running the latest version of VSCode from the AUR, on a Manjaro system with i3 Window Manager. Everything is up to date.
Beta Was this translation helpful? Give feedback.
All reactions