Check if fbterm is installed and use $TTY variable

This commit is contained in:
Marc Cornellà 2015-08-09 21:55:10 +02:00
parent 3d5b3430fd
commit be5dcb8a59

View File

@ -1,6 +1,8 @@
# start fbterm automatically in /dev/tty* # start fbterm automatically in /dev/tty*
if [[ $(tty|grep -o '/dev/tty') = /dev/tty ]] ; then if (( ${+commands[fbterm]} )); then
fbterm if [[ "$TTY" = /dev/tty* ]] ; then
exit fbterm
exit
fi
fi fi