bash : dconf_load now swaps voronind for current user.

This commit is contained in:
Dmitry Voronin 2023-11-03 23:03:50 +03:00
parent ea4a7bba3e
commit 87155fb9db

View file

@ -1,2 +1,4 @@
alias dconf_load="dconf load / < $HOME/.linux/gnome.dconf" # load gnome settings.
alias dconf_save="dconf dump / > $HOME/.linux/_gnome.dconf" # dump gnome settings to a file.
_GDCONF_PATH="${HOME}/.linux/gnome.dconf"
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.