Arch Linux XFCE Guide - ryzendew/Linux-Tips-and-Tricks GitHub Wiki

Arch Linux XFCE Guide

Complete beginner-friendly guide to XFCE on Arch Linux, including installation, configuration, customization, and XFCE-specific features.


Table of Contents

  1. Installing XFCE
  2. XFCE Configuration
  3. XFCE Customization
  4. XFCE Applications
  5. Troubleshooting

Installing XFCE

Install XFCE

Install XFCE:

# Full XFCE
sudo pacman -S xfce4 xfce4-goodies

# Minimal
sudo pacman -S xfce4

Enable XFCE

Start XFCE:

# Install LightDM
sudo pacman -S lightdm lightdm-gtk-greeter

# Enable and start LightDM (recommended method)
sudo systemctl enable --now lightdm

# Alternative method (for learning):
# sudo systemctl enable lightdm
# sudo systemctl start lightdm

XFCE Configuration

XFCE Settings

Configure XFCE:

# Open Settings
xfce4-settings-manager

# Or from menu
# Settings

Panel Configuration

Configure panel:

# Right-click panel > Panel > Panel Preferences
# Or
xfce4-panel --preferences

XFCE Customization

Themes

Install themes:

# Install themes
sudo pacman -S arc-gtk-theme
yay -S materia-gtk-theme

Icons

Install icons:

# Install icon themes
sudo pacman -S papirus-icon-theme

XFCE Applications

XFCE Apps

Install applications:

# Core apps (included)
# Thunar, Mousepad, etc.

# Additional apps
sudo pacman -S thunar ristretto xfce4-terminal

Troubleshooting

Panel Issues

Reset panel:

# Remove panel config
rm -rf ~/.config/xfce4/panel

# Restart panel
xfce4-panel --restart

Summary

This guide covered XFCE installation, configuration, customization, and troubleshooting.


Next Steps


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