Files
zoitechat/troubleshooting.md
deepend 9ee8a53b9c Moved the Flatpak display troubleshooting content from readme.md into a standalone troubleshooting.md document, as requested.
Replaced the large inline README section with a single link to the new troubleshooting file to keep the README concise.
2026-02-24 11:48:04 -07:00

966 B

Troubleshooting

Flatpak

If flatpak run net.zoite.Zoitechat only prints Gtk-WARNING **: cannot open display, collect extra diagnostics with:

flatpak run --devel --command=sh net.zoite.Zoitechat

Then inside that shell:

echo "DISPLAY=$DISPLAY WAYLAND_DISPLAY=$WAYLAND_DISPLAY XDG_SESSION_TYPE=$XDG_SESSION_TYPE"
xdpyinfo >/tmp/xdpyinfo.log 2>&1 || true
env G_MESSAGES_DEBUG=all zoitechat 2>&1 | tee /tmp/zoitechat-debug.log

To inspect sandbox permissions from the host:

flatpak info --show-permissions net.zoite.Zoitechat
flatpak override --user --show net.zoite.Zoitechat

If needed, try running with direct access to your active display stack:

# X11 sessions
flatpak override --user --socket=x11 net.zoite.Zoitechat

# Wayland sessions
flatpak override --user --socket=wayland net.zoite.Zoitechat

You can reset overrides after testing:

flatpak override --user --reset net.zoite.Zoitechat