#ChatGPT App doesnt exist?
16 messages · Page 1 of 1 (latest)
looks like you accidentally removed a / in the URL
https://chatgpt.com ✅
https:/chatgpt.com ❌
You should mark the thread as "Resolved" if the issue was fixed
you may need to do hyprctl reload after changing that.
can you share what your omarchy-launch-webapp command looks like?
bat ~/.local/share/omarchy/bin/omarchy-launch-webapp
and you are not using chromium?
what browser are you using?
its not that you arent using chromium its that you arent using any of the other presets like brave or opera. Yeah no idea if webapps are even supported by zen but either way its not supported right now on omarchy
some browser need custom integration to work with webapps, sadly its not just adding zen to the list of supported browsers
no idea tbh, I use chromium, fast, light enough for me and gets the job done
you can try firefox with https://github.com/filips123/PWAsForFirefox
If you dont want to use chromium
I been using helium for web apps for a few weeks now. Still using chromium as real browser.
@fluid willow here is how I open webapps in firefox you could easily change this to zen if wanted unsure on progressive web app support.
~/.local/share/omarchy/bin/omarchy-launch-webapp
browser=$(xdg-settings get default-web-browser)
case $browser in
firefox* )
# Firefox workaround
exec setsid uwsm app -- firefox "$1" "${@:2}"
;;
*)
# Old Chromium fallback for other browsers if needed
browser="chromium.desktop"
exec setsid uwsm app -- $(sed -n 's/^Exec=\([^ ]*\).*/\1/p' {~/.local,~/.nix-profile,/usr}/share/applications/$browser 2>/dev/null | head -1) --app="$1" "${@:2}"
;;
esac```