Skip to content

Instantly share code, notes, and snippets.

@jeansch
Created September 18, 2013 20:26
Show Gist options
  • Save jeansch/6615141 to your computer and use it in GitHub Desktop.
Save jeansch/6615141 to your computer and use it in GitHub Desktop.
Dump gsettings.
#!/bin/sh
# Dump gsettings
for s in $(gsettings list-schemas); do
for k in $(gsettings list-keys $s); do
echo -n "$s.$k = "; gsettings get $s $k;
done;
done
@theonelucas
Copy link

theonelucas commented Oct 15, 2018

Why not use gsettings list-recursively?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment