1
0
mirror of https://github.com/robbyrussell/oh-my-zsh.git synced 2025-12-28 22:24:46 +01:00
Files
oh-my-zsh/plugins/fbterm/fbterm.plugin.zsh
2015-08-09 21:55:52 +02:00

9 lines
138 B
Bash

# start fbterm automatically in /dev/tty*
if (( ${+commands[fbterm]} )); then
if [[ "$TTY" = /dev/tty* ]] ; then
fbterm
exit
fi
fi