Differences between revisions 1 and 3 (spanning 2 versions)
Revision 1 as of 2009-06-25 21:19:48
Size: 365
Editor: 41-62
Comment:
Revision 3 as of 2020-09-10 07:50:07
Size: 0
Editor: hgiger
Comment: Obsolete
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
= 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'
}}}