summaryrefslogtreecommitdiffstats
path: root/term-open
blob: e61c7fca7d43a24b6598d2994d8f7b564359dcf1 (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/bash

cmd=$1; shift
term=termite

if [[ $cmd = "mutt" ]]; then
	exec termite -e "mutt -e 'set autoedit=yes' -- $*"
fi

exec termite -e "$cmd -- $*"