Ubuntu – How to dump all the manully altered dconf / gsettings keys

dconfgsettings

The dconf Editor indicate the keys whose values have been altered by the user by changing the key's font to bold as shown in the snapshot.
snap1

So I wonder if there is a way to dump all the keys (including their schema) which have been modified manually by user or changed to something other than the default? ..that would prove very helpful to solve many desktop environment issues, or at least for me 🙂

Best Answer

dconf provides such an option (Ref: man dconf)

  • To dump only user-altered (non-default) keys:

      dconf dump / > dump.dconf
    
  • To restore:

      dconf load / < dump.dconf