GhostBSD offers several community editions, and one of the most popular is the XFCE edition. XFCE is a lightweight and highly customizable desktop environment that allows users to personalize nearly every aspect of their interface.
XFCE lets you tweak everything from themes and icons to panel layouts and startup behavior. Backing up these settings ensures you can restore your preferred setup after a reinstall or share it with others.
Most XFCE settings are stored in your home directory under ~/.config
. To back them up:
mkdir ~/xfce-backup
cp -r ~/.config/xfce4 ~/xfce-backup/
cp -r ~/.config/Thunar ~/xfce-backup/
cp -r ~/.config/plank ~/xfce-backup/
(if using Plank)cp -r ~/.themes ~/xfce-backup/
cp -r ~/.icons ~/xfce-backup/
To restore your customizations after a reinstall:
cp -r ~/xfce-backup/xfce4 ~/.config/
cp -r ~/xfce-backup/Thunar ~/.config/
cp -r ~/xfce-backup/plank ~/.config/
After restoring the backup, your workspace count returns to the original number. All other settings (panel layout, icons, startup apps) are also restored. This is because the backup overwrites the current configuration with the saved one.
With this approach, you can experiment freely with XFCE while knowing your perfect setup is just a restore away.
If you spot any typos, unclear instructions, or areas for improvement, I’d love to hear from you. This project is built for GhostBSD users, by GhostBSD users—and your input helps shape it.