diff options
author | Karel Kočí <karel.koci@nic.cz> | 2016-08-18 17:18:47 +0200 |
---|---|---|
committer | Karel Kočí <karel.koci@nic.cz> | 2016-08-18 17:18:47 +0200 |
commit | fed33f9b8fd4eedc93df8a0446d51fbd30f6c31f (patch) | |
tree | 5a2d8161ac7a868d10eff659371b911777596d87 /install | |
parent | ec907b0df80ee3df937be8bc42fe7b3ac0646852 (diff) | |
download | myconfigs-fed33f9b8fd4eedc93df8a0446d51fbd30f6c31f.tar.gz myconfigs-fed33f9b8fd4eedc93df8a0446d51fbd30f6c31f.tar.bz2 myconfigs-fed33f9b8fd4eedc93df8a0446d51fbd30f6c31f.zip |
Add email to install script and add offlineimap
Diffstat (limited to 'install')
-rwxr-xr-x | install | 15 |
1 files changed, 15 insertions, 0 deletions
@@ -26,6 +26,21 @@ if [[ $REPLY =~ ^[Yy]?$ ]]; then echo "Please don't forget to setup YouCompleteMe" fi +read -p "Install email synchronization? (Y/n) " +if [[ $REPLY =~ ^[Yy]?$ ]]; then + inst local/bin/annoyme ~/.local/bin/ + inst local/sbin/annoyme-request ~/.local/sbin/ + inst local/sbin/syncemail ~/.local/sbin/ + inst config/offlineimap/ ~/.config/offlineimap + inst config/systemd/user/syncemail.service ~/.config/systemd/user +fi + +read -p "Install mutt configuration? (Y/n) " +if [[ $REPLY =~ ^[Yy]?$ ]]; then + inst mutt/ ~/.mutt + inst urlview ~/.urlview +fi + read -p "Install i3 configuration and related tools? (Y/n) " if [[ $REPLY =~ ^[Yy]?$ ]]; then inst xinitrc ~/.xinitrc |