mirror of the now-defunct rocklinux.org
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.
 
 
 
 
 
 

11 lines
241 B

#!/bin/bash
for x in `cat /proc/cmdline` ; do
if [[ $x = *keymap* ]] ; then
keymap=`find /usr/share/kbd/keymaps -name "${x##*=}.map*" 2>/dev/null`
if [ -f "${keymap}" ] ; then
cd ${keymap%/*}
loadkeys ${keymap##*/}
fi
fi
done