bash : dconf_load now swaps voronind for current user.
This commit is contained in:
parent
ea4a7bba3e
commit
87155fb9db
|
@ -1,2 +1,4 @@
|
||||||
alias dconf_load="dconf load / < $HOME/.linux/gnome.dconf" # load gnome settings.
|
_GDCONF_PATH="${HOME}/.linux/gnome.dconf"
|
||||||
alias dconf_save="dconf dump / > $HOME/.linux/_gnome.dconf" # dump gnome settings to a file.
|
|
||||||
|
alias dconf_load="sed -i -e s/voronind/$(whoami)/g ${_GDCONF_PATH} ; dconf load / < ${_GDCONF_PATH}" # load gnome settings.
|
||||||
|
alias dconf_save="dconf dump / > ${_GDCONF_PATH}" # dump gnome settings to a file.
|
||||||
|
|
Reference in a new issue