Blame view
repos/robbyrussell/oh-my-zsh/plugins/fbterm/fbterm.plugin.zsh
139 Bytes
|
093a6c34b
|
1 |
# start fbterm automatically in /dev/tty* |
|
dcebc9e8f
|
2 3 4 5 |
if (( ${+commands[fbterm]} )); then
if [[ "$TTY" = /dev/tty* ]] ; then
fbterm && exit
fi
|
|
093a6c34b
|
6 |
fi |