summaryrefslogtreecommitdiff
path: root/plugins/fbterm/fbterm.plugin.zsh
blob: bc253209201cca8c4a1ea4c4d30b21a621c40b07 (plain)
1
2
3
4
5
6
7
# start fbterm automatically in /dev/tty*

if (( ${+commands[fbterm]} )); then
	if [[ "$TTY" = /dev/tty* ]] ; then
		fbterm && exit
	fi
fi