Skip to main content

DConf Editor Gnome

·2 mins· loading · loading · ·
DConf Settings Tools Gnome Linux Guide
DarkXero
Author
DarkXero
I create content about Linux & FOSS software. You’ll find me rocking ArchLinux with KDE Plasma, probably helping somebody with a question. 😎
Table of Contents

What is it?

Dconf Editor is a graphical tool used to configure settings in Linux, particularly on GNOME desktop environments. It allows users to navigate and modify system options stored in the dconf database, which is a key-value store that manages different aspects of the system.

Install Dconf On Linux

Dconf comes pre-installed in many Linux distributions. If it is not installed already, you can install it using the distribution’s default package manager depending upon the distribution you use.

sudo pacman -S dconf

Backup/Restore & Reset GNOME Settings With Dconf

Believe it or not, this is one of the easiest way to backup and restore system settings with a just single command. To backup your current Linux desktop settings using dconf, do run this command:

dconf dump /org/gnome/ > gnome-desktop.conf

The above command will save all customization and tweaks you made in your system, including the pinned applications in the Dock or Unity launcher, desktop panel applets, desktop indicators, your system fonts, GTK themes, Icon themes, monitor resolution, keyboard shortcuts, window button placement, menu and launcher behaviour etc., in a text file named gnome-desktop.conf.

Please note that this command will only backup the system settings. It won’t save settings of other applications that doesn’t use dconf. Also, it won’t backup your personal data either.

You can view this file using any text editors or cat command.

cat gnome-desktop.conf

Now reset your desktop settings to the factory defaults with command:

dconf reset -f /org/gnome/

After running the above command, your Linux desktop will turn into the old state when you installed it in the first time. Don’t panic! Your personal data and installed applications will still be intact.

To restore the System settings, simply do:

dconf load /org/gnome/ < gnome-desktop.conf

You can even backup more specific settings like desktop or window manager.

dconf dump /org/gnome/desktop/wm/preferences/ > old_wm_settings

Keep the backup file in a safe place to use it later after reinstalling your Linux desktop.

It’s that simple!!

Related

Docker & Docker-Compose
·4 mins· loading · loading
Docker Docker-Compose Tools Containers Linux Guide
How To Downgrade Packages
·2 mins· loading · loading
Downgrade ArchLinux Guide Linux
Scrcpy Android screen mirroring tool
·4 mins· loading · loading
Scrcpy Tools Android Linux FOSS Mirroring