fbterm.plugin.zsh 138 B

12345678
  1. # start fbterm automatically in /dev/tty*
  2. if (( ${+commands[fbterm]} )); then
  3. if [[ "$TTY" = /dev/tty* ]] ; then
  4. fbterm
  5. exit
  6. fi
  7. fi