So, I just discovered the Firefox Flatpak doesn’t use wayland by default and have fallen into the rabbit hole of Firefox + Wayland. I’d like to share a few fixes/optimizations I have discovered, and here any of yours for the best Firefox + wayland experience.
- Enable in flatpak:
flatpak override --user --env=MOZ_ENABLE_WAYLAND=1 org.mozilla.firefox
flatpak override --user --socket=wayland org.mozilla.firefox
- Get rid of Redundant WebRTC indicator on GNOME shell:
nano .var/app/org.mozilla.firefox/.mozilla/firefox/[randomstring].default-release/chrome/userChrome.css
#webrtcIndicator {
display: none;
}
- Get 144hz rendering:
about:config
layout.frame_rate
to the refresh rate of your monitor
Know any other tips/tricks? I don’t really understand why Mozilla doesn’t implement some of these things by default, so any explanation on that would be good as well.