summaryrefslogtreecommitdiffstats
path: root/mutt/.config/mutt/choose-muttrc-type
blob: ddadb7061f7828308057c9a01fc0111ecba5e2cc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh
set -eu
set -o pipefail

case "$(hostname)" in
hornet)
    echo 'source ~/.config/mutt/local'
    ;;
*)
    echo 'source ~/.config/mutt/imap'
    ;;
esac