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
196 B
Bash

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