]> git.pld-linux.org Git - packages/console-tools.git/blob - console.sh
- startup script for console-tools
[packages/console-tools.git] / console.sh
1
2 case $(tty) in
3 (/dev/tty[0-9]|/dev/tty[0-9][0-9])
4
5         if [ -f /etc/sysconfig/console ]
6         then
7                 . /etc/sysconfig/console
8         
9                 if [ "$CONSOLEMAP" != "" ]
10                 then
11                         # Switch the G0 charset map from the default ISO-8859-1
12                         # to the user-defined map (loaded with consolefonts)
13                         echo -ne '\33(K'
14                 fi
15         fi
16         ;;
17 esac
This page took 0.069601 seconds and 4 git commands to generate.