mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-11 00:10:08 +00:00
06d5cb93ab
start fbterm automatically in /dev/tty*
6 lines
113 B
Bash
6 lines
113 B
Bash
# start fbterm automatically in /dev/tty*
|
|
|
|
if [[ $(tty|grep -o '/dev/tty') = /dev/tty ]] ; then
|
|
fbterm
|
|
exit
|
|
fi
|