From 755e2e9cc0da8eb9d2f0a1a20a506ceb6e1aef67 Mon Sep 17 00:00:00 2001 From: dcarrillo Date: Sat, 30 May 2020 18:14:11 +0200 Subject: [PATCH] Add options to install dotfiles and dconf configurations individually --- config.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/config.sh b/config.sh index d461629..8df64b7 100755 --- a/config.sh +++ b/config.sh @@ -66,6 +66,12 @@ main() copy_dotfiles dconf_loader ;; + --install-dotfiles) + copy_dotfiles + ;; + --install-dconf) + copy_dotfiles + ;; **) echo "Usage: $0 <--dump-dconf|--install>" ;;