You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
358 B
Bash
14 lines
358 B
Bash
#!/bin/sh
|
|
|
|
if [ -f /run/console-setup/keymap_loaded ]; then
|
|
rm /run/console-setup/keymap_loaded
|
|
exit 0
|
|
fi
|
|
kbd_mode '-u' < '/dev/tty1'
|
|
kbd_mode '-u' < '/dev/tty2'
|
|
kbd_mode '-u' < '/dev/tty3'
|
|
kbd_mode '-u' < '/dev/tty4'
|
|
kbd_mode '-u' < '/dev/tty5'
|
|
kbd_mode '-u' < '/dev/tty6'
|
|
loadkeys '/etc/console-setup/cached_UTF-8_del.kmap.gz' > '/dev/null'
|