dotfiles/zsh/.local/share/oh-my-zsh/plugins/fbterm/fbterm.plugin.zsh

8 lines
139 B
Bash
Raw Normal View History

2024-06-19 00:06:56 +02:00
# start fbterm automatically in /dev/tty*
if (( ${+commands[fbterm]} )); then
if [[ "$TTY" = /dev/tty* ]] ; then
fbterm && exit
fi
fi