As far as I know, the Dconf configuration is stored in ~/.config/dconf/user
. However, I just noticed that I also have ~/.config/user
which has not been used for a while:
~> ls -l ~/.config/user ~/.config/dconf/user
-rw-rw-r-- 1 andrea andrea 56059 may 14 17:41 /home/andrea/.config/dconf/user
-rw-rw-r-- 1 andrea andrea 51750 jan 29 23:36 /home/andrea/.config/user
They are both GVariant databases:
~> file ~/.config/user ~/.config/dconf/user
/home/andrea/.config/user: GVariant Database file, version 0
/home/andrea/.config/dconf/user: GVariant Database file, version 0
What is ~/.config/user
? Is it maybe an old version of ~/.config/dconf/user
that was migrated to a different path in a recent version of Ubuntu? Or is it something different?
Can I safely delete it?
strings /home/andrea/.config/user
orhexdump -C /home/andrea/.config/user
to see what's inside that file – Sergiy Kolodyazhnyy May 14 '16 at 19:01