mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-11 16:30:09 +00:00
be10229659
This prevents the previous behavior that exitted the zsh session even if fbterm didn't start correctly.
7 lines
139 B
Bash
7 lines
139 B
Bash
# start fbterm automatically in /dev/tty*
|
|
|
|
if (( ${+commands[fbterm]} )); then
|
|
if [[ "$TTY" = /dev/tty* ]] ; then
|
|
fbterm && exit
|
|
fi
|
|
fi
|