From f340084bd19ce651a217df6f6ae11c5d3e145943 Mon Sep 17 00:00:00 2001 From: Urbain Vaes Date: Sat, 6 Jun 2015 16:08:00 +0100 Subject: Update README.md --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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. -- cgit v1.2.3 From 2584481d7f2cf3c8a39918d74cfb41274d9e2bd8 Mon Sep 17 00:00:00 2001 From: Urbain Vaes Date: Sat, 6 Jun 2015 16:24:41 +0100 Subject: Delete --verbose for rm for tidy output --- install.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/install.sh b/install.sh index 89da167..1df41e3 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 ***" -- cgit v1.2.3