dot_files/dot_oh-my-zsh/plugins/fbterm/fbterm.plugin.zsh

8 lines
139 B
Bash
Raw Normal View History

2025-11-22 22:39:36 +00:00
# start fbterm automatically in /dev/tty*
if (( ${+commands[fbterm]} )); then
if [[ "$TTY" = /dev/tty* ]] ; then
fbterm && exit
fi
fi