home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / boot / i386 / root / bin / unicode_stop < prev    next >
Text File  |  2006-11-29  |  451b  |  21 lines

  1. #!/bin/sh
  2. # stop unicode
  3. TTY=`/usr/bin/tty`
  4. case $TTY in
  5.     /dev/console|/dev/tty[0-9]*)
  6.         ;;
  7.     *)
  8.         echo "unicode_stop skipped on $TTY"
  9.         exit 0
  10.         ;;
  11. esac
  12. kbd_mode -a
  13. echo -n -e '\033%@'
  14.  
  15. # "dumpkeys | loadkeys --unicode" which is called in "unicode_start"
  16. # cannot be reverted, therefore we have to load the keyboard mapping again
  17. # if it could be sucessfully saved in "unicode_start":
  18.  
  19. test -r $HOME/.kbd/.keymap_sv && loadkeys $HOME/.kbd/.keymap_sv
  20.  
  21.