Tell me more ×
Unix & Linux Stack Exchange is a question and answer site for users of Linux, FreeBSD and other Un*x-like operating systems.. It's 100% free, no registration required.

I would like to have a look at the files the dconf-editor uses to read/write settings, and I'm assuming that they are managed by gsettings. Where are these files stored on the system, and in what format?

share|improve this question
1  
To find out the location of the files, make some change and run find ~/.[!.]* -mmin -5. – Gilles Mar 9 '11 at 20:53

2 Answers

up vote 5 down vote accepted

Following some advice, I made a change and ran this:

find ~/.[!.]* -mmin -5

Among the displayed results was ~/.config/dconf/user. It's a binary file, a sort of database where GSettings stores stuff.

share|improve this answer

A better method would be strace to find out. Using a binary file, why for some wrong idea about performance, how dumb for multiple reasons! KDE does it right but it's not as light as xfce with nautilus!

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.