This repository has been archived on 2024-03-04. You can view files and clone it, but cannot push or open issues or pull requests.
linux/.config/bash/module/dconf.sh

10 lines
221 B
Bash

export _GDCONF_PATH="${HOME}/.config/linux/gnome.dconf"
function dconf_load() {
sed -i -e s/voronind/$(whoami)/g ${_GDCONF_PATH} ; dconf load / < ${_GDCONF_PATH}
}
function dconf_save() {
dconf dump / > gnome.dconf
}