54

I'm new to Linux and I am having trouble with Ubuntu keyboard shortcuts like Alt+Tab to switch between applications and Alt+Shift to change the keyboard layout.

Can anyone help please?

Jorge Castro
  • 73,717

3 Answers3

58

On Unity (up to Ubuntu 17.10)

To see Unity shortcuts press and hold the Super key.

To customize shortcuts open System settings (gnome-control-center), go to Keyboard and select the Shortcuts tab. Explore all the categories to find what you're interested in changing and click on it to change. Then press the keys for your new shortcut.

customize shortcuts

To change the keyboard layout shortcut, in System settings go to Text Entry and change the shortcuts there.

change the keyboard layout shortcut

Pablo Bianchi
  • 17,371
Cornelius
  • 9,653
20

Some of the shortcuts are impossible to change with built-in system settings GUI. Most other system-wide shortcuts are modified through dconf as described here.

  • Open Terminal (Alt+Ctrl+T by default)
  • sudo apt install dconf-editor
  • dconf-editor
  • Navigate to org.gnome.desktop.wm.keybindings
  • Further setup is obvious, except for <Primary>.

The figure below is the example to disable Alt + F7:

Example-to-disable-ALT-F7

Pablo Bianchi
  • 17,371
12

On Ubuntu 18.04 and later

  1. Launch Settings
  2. Click on Devices (under Network)
  3. Click on Keyboard

enter image description here enter image description here

If you want to add a custom shortcut scroll to the bottom of the applet and click on the + symbol to create a shortcut:

enter image description here

Pablo Bianchi
  • 17,371
Zoltan
  • 508