mirror of
https://gitlab.com/linuxstuff/dotfiles.git
synced 2026-08-17 13:59:29 +02:00
8 lines
139 B
Bash
Executable File
8 lines
139 B
Bash
Executable File
# start fbterm automatically in /dev/tty*
|
|
|
|
if (( ${+commands[fbterm]} )); then
|
|
if [[ "$TTY" = /dev/tty* ]] ; then
|
|
fbterm && exit
|
|
fi
|
|
fi
|