An alternative to the Super key on an old keyboard

9,572

Do you already use right Alt?

You could map it to the Windows key in Gnome settings:

  • System->Preferences->Keyboard
  • Layouts
  • Options...
  • Alt/Win key behavior
  • Left Alt is swapped with Left Win

Or you could map Caps Lock to the Windows key, and choose another shortcut for changing languages.

In the same control panel:

  • CapsLock key behaviour

  • Make CapsLock an additional Super

    (or Make CapsLock an additional Hyper)

and then:

  • Key(s) to change layout
  • too many options to mention

Common choices include:

  • Left Alt + Left Shift
  • Left Ctrl + Left Shift
  • Left Ctrl + Right Ctrl

but being an Emacs user, I would suggest the Both Ctrl keys together option.


If those options are insufficient, you will need to use xmodmap.

You could map Right Control to Windows at the shell like this:

xmodmap -e 'remove control = Control_R'
xmodmap -e 'add Mod4 = Control_R'

Depending on your system, you can probably also put the equivalent settings in .Xmodmap, e.g.

.Xmodmap

remove control = Control_R'
add Mod4 = Control_R'

If you'd rather use xmodmap than the Gnome control panel, you can change Control_R to something else, for instance right Alt is either Alt_R or ISO_Level3_Shift, depending on your keyboard settings, e.g.

xmodmap -e 'remove ISO_Level3_Shift = Mod5'
xmodmap -e 'add Mod4 = ISO_Level3_Shift'

works for me.

Share:
9,572

Related videos on Youtube

Little Bobby Tables
Author by

Little Bobby Tables

Updated on September 17, 2022

Comments

  • Little Bobby Tables
    Little Bobby Tables over 1 year

    I've got a classic M-series IBM keyboard that I want to put to a use. However, it does not have a Windows (a.k.a Super) key, that I use for many windows-manager-related shortcuts. On top of it, I use Emacs, so many Alt or Ctrl shortcuts are already taken. I also can't use Caps Lock as a modifier, since that it is taken for switching between languages.

    What keyboard shortcuts would you recommend me for the windows manager (Gnome w. Emerald), taking into account these limitations (no Super key, can't remap Caps, and must not collide with frequent Emacs shortcuts)?

    • Admin
      Admin over 13 years
      Do you have a preferred key?
  • Little Bobby Tables
    Little Bobby Tables over 13 years
    These are good options - Right Alt as super might work. I'll give it a swing. Thanks!
  • Mikel
    Mikel over 13 years
    No problem. Note that you'll probably need the xmodmap version, and that it could be ISO_Level3_Shift or Alt_R.
  • Jonathan
    Jonathan over 5 years
    Capslock options no longer seem to be there in Ubuntu 18?
  • Bashar Al-Abdulhadi
    Bashar Al-Abdulhadi over 3 years
    on ubuntu 20 System->Preferences->Keyboard is no more, there is Keyboard Shortcuts now? i used xmodmap and worked just fine though :)