firefox
Setup Firefox browser
Install (Ubuntu)¶
Install Firefox from Mozilla's repo
# Create a directory to store APT repository keys if it doesn't exist:
sudo install -d -m 0755 /etc/apt/keyrings
# Import the Mozilla APT repository signing key:
wget -q https://packages.mozilla.org/apt/repo-signing-key.gpg -O- | sudo tee /etc/apt/keyrings/packages.mozilla.org.asc > /dev/null
# The fingerprint should be 35BAA0B33E9EB396F59CA838C0BA5CE6DC6315A3
gpg -n -q --import --import-options import-show /etc/apt/keyrings/packages.mozilla.org.asc | awk '/pub/{getline; gsub(/^ +| +$/,""); print "\n"$0"\n"}'
# Next, add the Mozilla APT repository to your sources list:
echo "deb [signed-by=/etc/apt/keyrings/packages.mozilla.org.asc] https://packages.mozilla.org/apt mozilla main" | sudo tee -a /etc/apt/sources.list.d/mozilla.list > /dev/null
# Configure APT to prioritize packages from the Mozilla repository
echo '
Package: *
Pin: origin packages.mozilla.org
Pin-Priority: 1000
' | sudo tee /etc/apt/preferences.d/mozilla
# Update your package list and install the Firefox Nightly .deb package:
sudo apt update && sudo apt install -y firefox
Install (Windows)¶
chocolatey:
choco install firefox
winget:
winget install -e --id Mozilla.Firefox
Advanced settings¶
Enter about:config
in the location bar.
Compact mode¶
Set the following option to true
browser.compactmode.show
Full screen transition tweaks¶
- Set
full-screen-api.transition-duration.enter
to0 0
- Set
full-screen-api.transition-duration.leave
to0 0
- Set
full-screen-api.transition.timeout
to0
- Set
full-screen-api.warning.timeout
to0
Force hardware acceleration¶
Set the following option to true
media.hardware-video-decoding.force-enabled