Arch Linux Web Browsers - ryzendew/Linux-Tips-and-Tricks GitHub Wiki
Arch Linux Web Browsers Guide
Complete beginner-friendly guide to web browsers on Arch Linux, including Firefox, Chromium, Chrome, and browser configuration.
Table of Contents
Firefox
Install Firefox
Install Firefox:
# Install Firefox
sudo pacman -S firefox
# Firefox Developer Edition
yay -S firefox-developer-edition
# Firefox Nightly
yay -S firefox-nightly
Firefox Configuration
Configure Firefox:
# Open about:config
# Modify settings
# Or edit prefs.js
vim ~/.mozilla/firefox/profile.default/prefs.js
Chromium
Install Chromium
Install Chromium:
# Install Chromium
sudo pacman -S chromium
# Launch
chromium
Chromium Flags
Use flags:
# Launch with flags
chromium --enable-features=VaapiVideoDecoder --enable-gpu-rasterization
🟢 Google Chrome
Install Chrome
Install Chrome:
# Install Chrome
yay -S google-chrome
# Launch
google-chrome-stable
Other Browsers
Brave
Install Brave:
# Install Brave
yay -S brave-bin
# Launch
brave
Vivaldi
Install Vivaldi:
# Install Vivaldi
yay -S vivaldi
# Launch
vivaldi
Opera
Install Opera:
# Install Opera
yay -S opera
# Launch
opera
Browser Configuration
Hardware Acceleration
Enable acceleration:
# Firefox: about:config
# media.ffmpeg.vaapi.enabled = true
# Chromium: Launch with flags
chromium --enable-features=VaapiVideoDecoder
Extensions
Install extensions:
- Firefox: https://addons.mozilla.org/
- Chromium: https://chrome.google.com/webstore/
Summary
This guide covered Firefox, Chromium, Chrome, other browsers, and browser configuration.
Next Steps
- 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.