Differences between revisions 1 and 2
Revision 1 as of 2009-06-25 21:19:48
Size: 365
Editor: 41-62
Comment:
Revision 2 as of 2013-09-09 14:14:56
Size: 389
Editor: alders
Comment:
Deletions are marked like this. Additions are marked like this.
Line 9: Line 9:
----
[[CategoryEDUC]]

How can I map the META key to the left "windows" key (Emacs)?

Per default the left "alt" key will be the META key in Emacs. When you like to change the META key to the left "windows" key add the following lines to your startup script (.login)

xmodmap -e 'remove mod4 = Super_L'
xmodmap -e 'remove mod4 = Hyper_L'
xmodmap -e 'add mod4 = Meta_L'


CategoryEDUC