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

  1. Firefox
  2. Chromium
  3. Google Chrome
  4. Other Browsers
  5. Browser Configuration

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:


Summary

This guide covered Firefox, Chromium, Chrome, other browsers, and browser configuration.


Next Steps


This guide is based on the ArchWiki. For the most up-to-date information, always refer to the official ArchWiki.