Use SuperKey to Open KDE Menu
Steps to configure:
o Find the scancode for SuperKey.
Open a terminal and type:
xev
Press your SuperKey (Windows Key) and watch the scan code returned (mine is 133)
o Map that scan code to a 'phantom key (F13)'
With this test--type:
xmodmap -e "keycode 133=F13"
You should get returned to a prompt with no message. Then, right-click on the KDE menu, choose Launcher Settings, Keyboard Shortcut, then click the wrench symbol. Press your SuperKey and F13 should appear. Click Apply.
Test the menu by pressing the SuperKey--it should now appear.
o Automatically create mapping on startup
If the above worked, you now need to automate the key mapping on each startup. From the terminal window type:
cat << EOT >> ~/.kde/Autostart/xmod.sh
#!/bin/bash
xmodmap -e "keycode 133=F13"
EOT
sudo chmod 755 ~/.kde/Autostart/xmod.sh
That should do it!
Steps to configure:
o Find the scancode for SuperKey.
Open a terminal and type:
xev
Press your SuperKey (Windows Key) and watch the scan code returned (mine is 133)
o Map that scan code to a 'phantom key (F13)'
With this test--type:
xmodmap -e "keycode 133=F13"
You should get returned to a prompt with no message. Then, right-click on the KDE menu, choose Launcher Settings, Keyboard Shortcut, then click the wrench symbol. Press your SuperKey and F13 should appear. Click Apply.
Test the menu by pressing the SuperKey--it should now appear.
o Automatically create mapping on startup
If the above worked, you now need to automate the key mapping on each startup. From the terminal window type:
cat << EOT >> ~/.kde/Autostart/xmod.sh
#!/bin/bash
xmodmap -e "keycode 133=F13"
EOT
sudo chmod 755 ~/.kde/Autostart/xmod.sh
That should do it!

I love that the super key has a penguin. Mine has four quadrilaterals in a circle. Stupid HP.May 1, 2012
+Michael Bennett Yes. I had all I could do to write the 'W' word so I came up with that image.May 1, 2012
+Kevin Algiers You are welcome.Jul 31, 2012
Thanks. I am getting an error when i try to automate the keymap. It says thhat there is no such file or directory.Aug 11, 2012
Add a comment...