Blame view

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