ohmyzsh/plugins/fbterm/fbterm.plugin.zsh
2015-08-09 21:55:52 +02:00

9 lines
138 B
Bash

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