Configure Gnome

- add ~/.config/gnome-settings/*.ini
  => static files with a commented export of Gnome settings
- re-load these configs with `update-machine`
This commit is contained in:
Alexander Hess 2022-08-10 12:57:44 +02:00
commit 9bc310ff9f
Signed by: alexander
GPG key ID: 344EA5AB10D868E0
9 changed files with 820 additions and 0 deletions

View file

@ -402,6 +402,13 @@ _update_python() {
}
_restore_gnome() {
for file in $HOME/.config/gnome-settings/*.ini; do
dconf load / < $file
done
}
run-private-scripts() { # in the Nextcloud
if [ -d "$HOME/data/getraenkemarkt/shell" ]; then
for file in $HOME/data/getraenkemarkt/shell/*.sh; do
@ -421,6 +428,7 @@ update-machine() {
_update_repositories
_update_zsh
_update_python
_restore_gnome
sudo --reset-timestamp
}