diff options
Diffstat (limited to 'makedefault.sh')
-rw-r--r-- | makedefault.sh | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/makedefault.sh b/makedefault.sh new file mode 100644 index 0000000..c21a241 --- /dev/null +++ b/makedefault.sh @@ -0,0 +1,10 @@ +#!/bin/bash + +# Give this script the abstract name of an account and it will make it the default. + +title=$1 +muttdir="$HOME/.config/mutt/" +muttdirsed=$(echo $muttdir | sed -e 's/\//\\\//g') + +grep "$muttdir"muttrc -e "^source .*accounts.*" >/dev/null && \ + sed -i "s/^source .*accounts.*/source ${muttdirsed}accounts\/$title.muttrc/g" "$muttdir"muttrc |