dot_files/dot_oh-my-zsh/plugins/fbterm/fbterm.plugin.zsh
Viktor Barzin 58ef6d327f initial
2025-11-22 22:51:27 +00:00

7 lines
139 B
Bash

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