-
-
Notifications
You must be signed in to change notification settings - Fork 2
Arch Linux Web Browsers
Mattscreative edited this page Dec 5, 2025
·
2 revisions
Complete beginner-friendly guide to web browsers on Arch Linux, including Firefox, Chromium, Chrome, and browser configuration.
Install Firefox:
# Install Firefox
sudo pacman -S firefox
# Firefox Developer Edition
yay -S firefox-developer-edition
# Firefox Nightly
yay -S firefox-nightlyConfigure Firefox:
# Open about:config
# Modify settings
# Or edit prefs.js
vim ~/.mozilla/firefox/profile.default/prefs.jsInstall Chromium:
# Install Chromium
sudo pacman -S chromium
# Launch
chromiumUse flags:
# Launch with flags
chromium --enable-features=VaapiVideoDecoder --enable-gpu-rasterizationInstall Chrome:
# Install Chrome
yay -S google-chrome
# Launch
google-chrome-stableInstall Brave:
# Install Brave
yay -S brave-bin
# Launch
braveInstall Vivaldi:
# Install Vivaldi
yay -S vivaldi
# Launch
vivaldiInstall Opera:
# Install Opera
yay -S opera
# Launch
operaEnable acceleration:
# Firefox: about:config
# media.ffmpeg.vaapi.enabled = true
# Chromium: Launch with flags
chromium --enable-features=VaapiVideoDecoderInstall extensions:
- Firefox: https://addons.mozilla.org/
- Chromium: https://chrome.google.com/webstore/
This guide covered Firefox, Chromium, Chrome, other browsers, and browser configuration.
- Arch Linux Hardware Acceleration - Acceleration
- Arch Linux Multimedia - Multimedia
- ArchWiki Web Browsers: https://wiki.archlinux.org/title/List_of_applications/Internet#Web_browsers
This guide is based on the ArchWiki. For the most up-to-date information, always refer to the official ArchWiki.