Skip to content

Instantly share code, notes, and snippets.

@olejorgenb
Created December 10, 2017 17:17
Show Gist options
  • Save olejorgenb/2654a1ee7a91de3af5f9d95ad7c9f00e to your computer and use it in GitHub Desktop.
Save olejorgenb/2654a1ee7a91de3af5f9d95ad7c9f00e to your computer and use it in GitHub Desktop.
dconf-editor-with-extensions-schemas
#!/usr/bin/env zsh
## man dconf-editor:
#
# > dconf-editor reads gsettings schemas from $XDG_DATA_DIRS/glib-2.0/schemas
# > to obtain descriptions, default values and allowed values for keys.
#
# It only reads compiled schemas and only look for a single file -
# 'gschemas.compiled' per XDG_DATA_DIR though.. (??)
#
# To satisfy the Majesty we temporary compile all extensions schemas in a
# temporary XDG_DATA_DIR directory. Do this each time to ensure we are up to
# date with the extensions.
temp_xdg_dir=$(mktemp --directory)
schema_dir=$temp_xdg_dir/glib-2.0/schemas
mkdir -p $schema_dir
# Note: */** instead of ** since ** doesn't follow symlinks
# Want to support extensions that is symlinked into the extensions dir
schemas=($HOME/.local/share/gnome-shell/extensions/*/**/schemas/*.xml)
ln -s $schemas $schema_dir
cd $schema_dir
nix-shell -p gobjectIntrospection --command 'glib-compile-schemas .'
XDG_DATA_DIRS=${XDG_DATA_DIRS}${XDG_DATA_DIRS:+:}$temp_xdg_dir dconf-editor
cd /tmp
rm -rf $temp_xdg_dir
@olejorgenb
Copy link
Author

olejorgenb commented Jul 3, 2018

Note: a much simpler method if you only need to configure one extension is:

GSETTINGS_SCHEMA_DIR=$HOME/.local/share/gnome-shell/extensions/$EXTENSION/schemas dconf-editor 

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