From a4a1fd1949215f4a63349539ab3211d6638486f3 Mon Sep 17 00:00:00 2001 From: Mike Gerwitz Date: Wed, 16 Apr 2014 02:50:59 -0400 Subject: [PATCH] fbterm will only be exec'd if available --- profile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/profile b/profile index f237223..c71bfbd 100644 --- a/profile +++ b/profile @@ -22,7 +22,7 @@ # execute fbterm if logging on from a tty if [ "$TERM" == linux ] && tty | grep -q /dev/tty; then - exec fbterm + which fbterm >/dev/null && exec fbterm fi # .bashrc is only sourced by bash on non-login shells (see bash(1)), so we need