-
-
Notifications
You must be signed in to change notification settings - Fork 3
Arch Linux GNOME Guide
Mattscreative edited this page Dec 5, 2025
·
2 revisions
Complete beginner-friendly guide to GNOME on Arch Linux, including installation, configuration, customization, extensions, and GNOME-specific features.
- Installing GNOME
- GNOME Configuration
- GNOME Extensions
- GNOME Customization
- GNOME Applications
- Troubleshooting
Install GNOME:
# Full GNOME
sudo pacman -S gnome gnome-extra
# Minimal GNOME
sudo pacman -S gnomeStart GNOME:
# Install GDM
sudo pacman -S gdm
# Enable GDM
sudo systemctl enable gdm
sudo systemctl start gdmConfigure GNOME:
# Open Settings
gnome-control-center
# Or use gsettings
gsettings list-schemasConfigure via CLI:
# Set wallpaper
gsettings set org.gnome.desktop.background picture-uri 'file:///path/to/image.jpg'
# Set theme
gsettings set org.gnome.desktop.interface gtk-theme 'Adwaita-dark'
# Set icon theme
gsettings set org.gnome.desktop.interface icon-theme 'Papirus'Install manager:
# Install extension manager
sudo pacman -S gnome-shell-extension-manager
# Launch
gnome-shell-extension-managerInstall browser extension:
- Visit: https://extensions.gnome.org/
- Install browser extension
- Browse and install extensions
Recommended extensions:
- Dash to Dock
- User Themes
- Clipboard Indicator
- GSConnect
- AppIndicator
Install Tweaks:
# Install Tweaks
sudo pacman -S gnome-tweaks
# Launch
gnome-tweaksInstall themes:
# Install themes
sudo pacman -S arc-gtk-theme
yay -S adwaita-darkInstall icon themes:
# Install icon themes
sudo pacman -S papirus-icon-themeInstall applications:
# Core apps (included)
# Files, Settings, Software, etc.
# Additional apps
sudo pacman -S gnome-calculator gnome-calendar gnome-weatherCheck extensions:
# Check GNOME Shell version
gnome-shell --version
# Check extension compatibility
# Visit: https://extensions.gnome.org/Optimize:
# Disable animations
gsettings set org.gnome.desktop.interface enable-animations false
# Disable search
gsettings set org.gnome.desktop.search-providers disable-external trueThis guide covered GNOME installation, configuration, extensions, customization, and troubleshooting.
- Arch Linux Desktop Environments - Desktop environments
- Arch Linux Fonts and Themes - Themes
- ArchWiki GNOME: https://wiki.archlinux.org/title/GNOME
This guide is based on the ArchWiki. For the most up-to-date information, always refer to the official ArchWiki.