fbterm.plugin.zsh 138 Bytes
Newer Older
Gao Xiang's avatar
Gao Xiang committed
1
2
# start fbterm automatically in /dev/tty*

3
4
5
6
7
if (( ${+commands[fbterm]} )); then
	if [[ "$TTY" = /dev/tty* ]] ; then
		fbterm
		exit
	fi
Gao Xiang's avatar
Gao Xiang committed
8
fi