You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Overlay and Preferences no longer render transparent (invisible) in the AppImage.--disable-dev-shm-usage was being added via appendSwitch in main.js, which runs AFTER Chromium already initialized its sandbox and shared-memory — too late. Without shared memory, compositing failed and the windows stayed fully transparent (only the tray showed). Moved to build.linux.executableArgs (and scripts.start) so it reaches Chromium on the command line before initialization, like --no-sandbox.