my xfce4 dotfiles
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

7 lines
139 B

3 years ago
  1. # start fbterm automatically in /dev/tty*
  2. if (( ${+commands[fbterm]} )); then
  3. if [[ "$TTY" = /dev/tty* ]] ; then
  4. fbterm && exit
  5. fi
  6. fi