#!/bin/sh
if [  -e /etc/sysconfig/keyboard ]; then
	toto=$(grep "DISABLE_WINDOWS_KEY=yes" /etc/sysconfig/keyboard)
	if [ -z $toto ]; then
		xmodmap -e 'keycode 115=F13'
		xmodmap -e 'keycode 117=Menu'
	fi

fi
