diff options
author | Karel Kočí <cynerd@email.cz> | 2020-06-25 14:41:17 +0200 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2020-06-25 14:41:17 +0200 |
commit | 5b32edcf88fe0b952100547b1b26f2eda15d47f1 (patch) | |
tree | 96b48c68405607451b14cb9e7ea091be1a4a9bcd /install | |
parent | c76a1f17761b8b0787a8f142ca73dd69d6737387 (diff) | |
download | myconfigs-5b32edcf88fe0b952100547b1b26f2eda15d47f1.tar.gz myconfigs-5b32edcf88fe0b952100547b1b26f2eda15d47f1.tar.bz2 myconfigs-5b32edcf88fe0b952100547b1b26f2eda15d47f1.zip |
Replace offlineimap with isync
Diffstat (limited to 'install')
-rwxr-xr-x | install | 31 |
1 files changed, 14 insertions, 17 deletions
@@ -60,13 +60,10 @@ if ask "dev" "Development tools configuration"; then inst pylintrc ~/.pylintrc fi -if ask "email-sync" "Install email synchronization"; then - inst local/bin/email-unread ~/.local/bin/email-unread - inst local/sbin/newmail-notify ~/.local/sbin/newmail-notify - inst_email_sync - # Contains: - # inst local/sbin/syncemail ~/.local/sbin/ - # inst config/offlineimap/ ~/.config/offlineimap +if ask "cal" "Install calendar and contacts"; then + inst config/khal/config ~/.config/khal/config + inst config/khard/khard.conf ~/.config/khard/khard.conf + inst private/vdirsyncer/ ~/.vdirsyncer fi if ask "mutt" "Install mutt configuration"; then @@ -74,13 +71,19 @@ if ask "mutt" "Install mutt configuration"; then inst lynxrc ~/.lynxrc inst mutt/mailcap ~/.mutt/ inst mutt/color ~/.mutt/ - inst_mutt_conf - # Contains: - # inst mutt/ ~/.mutt - # inst msmtprc ~/.msmtprc + inst private/mutt/ ~/.mutt + inst private/msmtprc ~/.msmtprc mkdir -p ~/.cache/mutt # directory for temporaly html files fi +if ask "sync" "Install synchronization"; then + inst local/bin/allsync ~/.local/bin/allsync + inst local/bin/email-unread ~/.local/bin/email-unread + inst local/sbin/newmail-notify ~/.local/sbin/newmail-notify + inst private/mbsyncrc ~/.mbsyncrc + inst_sync +fi + if ask "desktop" "Install desktop generic"; then # Theme inst gtk-2.0/gtkrc ~/.gtkrc-2.0 @@ -106,12 +109,6 @@ if ask "wayland" "Install Wayland (sway)"; then inst config/swaylock/ ~/.config/swaylock fi -if ask "cal" "Install calendar and contacts"; then - inst config/khal/config ~/.config/khal/config - inst config/khard/khard.conf ~/.config/khard/khard.conf - inst private/vdirsyncer/ ~/.vdirsyncer -fi - if ask "surf" "Install Surf configuration"; then inst surf/script.js ~/.surf/script.js inst surf/styles/default.css ~/.surf/styles/default.css |