]> git.pld-linux.org Git - packages/console-tools.git/blob - console.sh
- removed unnecessary "dmesg | grep mono" : this should be now handled by
[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 -n -e '\033(K' > /proc/$$/fd/0
14                 fi
15                 
16         fi
17         ;;
18 esac
This page took 0.03282 seconds and 3 git commands to generate.