diff options
Diffstat (limited to 'mail.sh')
-rwxr-xr-x | mail.sh | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -0,0 +1,9 @@ +#!/bin/sh + +# Opens a mailbox using neomutt (and isync if neomutt configured to do so) + +pkill -SIGRTMIN+15 i3blocks +account="$(printf "gmail\nuniovi" | fzf)" +[ "$account" = "gmail" ] && neomutt -F "$HOME/.config/mutt/gmmuttrc" +[ "$account" = "uniovi" ] && neomutt -F "$HOME/.config/mutt/cumuttrc" +pkill -SIGRTMIN+15 i3blocks |