summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md5
-rwxr-xr-xinstall.sh3
2 files changed, 6 insertions, 2 deletions
diff --git a/README.md b/README.md
index 7c6d79e..1245e3c 100644
--- a/README.md
+++ b/README.md
@@ -5,4 +5,7 @@ This repository contains my configuration files. I use the following programs:
+ *offlineimap* + *mutt* + *msmtp* to receive, wirte, and send emails.
+ *zsh* with the *oh-my-zsh* framework as my shell.
-All the configuration files can be installed by executing the script install.sh.
+All the configuration files can be installed by executing the script install.sh, which can be used to
+
+- Install, update, and clean git repositories. Thanks to a parallel implementation inspired from [vim-plug](https://github.com/junegunn/vim-plug), this is done efficiently by the script.
+- Install copies (symbolic links) of the configuration files in my home directory.
diff --git a/install.sh b/install.sh
index e51ce0a..782c1c3 100755
--- a/install.sh
+++ b/install.sh
@@ -148,7 +148,8 @@ function install_dotfiles {
function clean {
echo -e "\n*** \e[1mCleaning repositories\e[0m ***"
for repo in "${!repodirs[@]}"; do
- rm -rfv ${repodirs[$repo]}
+ echo "Cleaning $repo in ${repodirs[$repo]}"
+ rm -rf ${repodirs[$repo]}
done
echo -e "\n*** \e[1mCleaning dotfiles\e[0m ***"