491

A number of games, Emacs, and the terminal make extensive use of the Alt key. Can Unity be configured to respect this key, rather than launching the HUD with it?

Jjed
  • 13,874
EoghanM
  • 5,125
  • 50
    the HUD is really annoying – Oki Erie Rinaldi May 04 '15 at 07:34
  • 12
    I agree. Having the Alt key launch the HUD pretty much guarantees that you're going to interfere the the proper functioning of most non-trivial apps. – Gino Jun 23 '15 at 03:06
  • It makes it extremely difficult to follow the Unity3d game engine tutorials. Alt is constantly used when creating the game world, for example rotating the scene viewport, which happens dozens of times a minute if you are creating a complicated object. – don bright Jan 14 '17 at 02:24
  • 1
    Any modifier key that is being used by it own is a terrible idea. Same thing with Start key. – Victor Yarema Aug 20 '18 at 22:15
  • 1
    It's really a stupid design. annoying. – Siwei Mar 16 '19 at 05:43

8 Answers8

513

Open the System Settings application either by going to Session Indicator in Unity panel, or by searching for System Settings using the HUD.

enter image description here

Then go to Keyboard > Shortcuts > Launchers. You can redefine the HUD key with the Key to show the HUD option. Pressing Backspace will disable the HUD shortcut altogether.

Screenshot of Keyboard settings window, in the Launchers section

If you set it to Alt manually, the setting distinguishes between the left and right Alt key. So if you want to maintain general behaviour and still use Alt combinations, this may be an alternate solution for you.

nelsonda
  • 623
nastys
  • 5,427
  • 3
  • 20
  • 28
  • 1
    Setting it to Super (the windows key) makes it the same as Win7 and OSX and doesn't have the issue that Alt has which is used in quite a few programs. – gman Sep 12 '12 at 19:00
  • 11
    This doesn't work for me. The left alt key still triggers HUD. I wonder if some update occurred which nullified this fix. I'm really surprised that this is even an issue: Emacs anyone? Geez. – Dogweather Sep 29 '12 at 04:13
  • 19
    I set it to Alt+Windows as it kept popping up when I was switching tabs in Firefox. This combo works very well and doesn't interfere with normal Dash operations. – japzone Dec 04 '12 at 15:34
  • 4
    Yes! Finally got rid of it!

    After all this time I still don't know the purpose of this HUD "Execute command"... Can anyone explain?

    – Lucas Pottersky May 09 '13 at 14:43
  • 1
    @Lucas Pottersky with HUD you can access all apps menu commands and indicators commands – nastys May 10 '13 at 12:51
  • 8
    Wow. I am kicking myself for not searching for this sooner! (Also, in retrospect, it's so obvious... I really shouldn't have had to search for it at all.) – Dan Tao May 20 '13 at 19:09
  • 5
    It should have been just alt-super by default, especially with all the games coming up for Linux. Thanks. – kelvinilla Jul 15 '13 at 09:19
  • This setting seems to reset itself every few weeks. I set it to Disabled, and sure enough a little while later it's bound to L Alt again. Any idea why this would happen? – hughes Dec 13 '13 at 02:39
  • By default it was set to Alt L, and I failed to change it to right Alt. Aside from this, it works :) – x-yuri May 26 '14 at 16:15
  • @Dogweather: It showed "disabled" for me too, and re-disabling it worked... I tried setting it back to Alt, without success, which isn't a problem, I don't want the menu coming up at all. – Aaron H. Sep 03 '14 at 17:42
  • 1
    Can these settings be controlled programmatically? – gonzobrains Dec 25 '14 at 01:31
  • This doesn't work for me. For some reason, when I try to set it to Left Alt, or Right Alt, it sets the binding to Disabled. Is there a config text file somewhere which allows you to set this option? – a06e Mar 20 '15 at 16:48
  • @becko Same for me, but using jokerdino's compizconfig-settings-manager method below worked (and could set it to Alt+Windows). – bonger May 04 '15 at 01:26
  • it works in ubuntu 14.10 – Andrzej Rehmann Dec 23 '15 at 22:34
  • @Dogweather Did you set it though? I set mine to Alt+L and it stopped popping up the HUD when I did Alt+D in the browser. Click that line and set it even if it already says the keystroke you want to use. I guess I was accidentally pressing Alt+Super+D when I tried to do Alt+D, but Alt+L worked for me (Alt+Super was the default). – doug65536 Sep 27 '16 at 17:52
  • Would love to find the corresponding setting in Ubuntu-MATE. (alt get captured away, thus alt- does not work in virtual box as desired) – Frank N Dec 06 '16 at 13:08
  • These items don't show up on my recent Ubuntu. Does anybody know how to disable showing the hud via Alt on Ubuntu 19.10? – kvz Nov 22 '19 at 11:13
  • How to do it in Ubuntu 20.04? – Nick Jan 10 '21 at 06:53
63

You can use compizconfig-settings-manager Install compizconfig-settings-manager to change the key used to show the HUD.

To install it, run the following command in a terminal:

sudo apt-get install compizconfig-settings-manager

After installing it, open it (ccsm) and go to Ubuntu Unity Plugin.

enter image description here

Click on the button for the option Key to show the HUD and a dialog similar to the one shown below will appear.

enter image description here

Click on Grab key combination and press your desired new key combination and press enter. After that, click on OK button and the new key combination will trigger the HUD from now on.

cydonian
  • 105
  • 3
jokerdino
  • 41,320
20

You can configure HUD with help of gsettings:

DESCRIPTION
       gsettings offers a simple commandline interface to GSettings.It lets you get, set or monitor an individual key for changes.
  • To get current key run following command in terminal:

    $ gsettings get org.compiz.integrated show-hud
    ['<Alt>']
    
  • To change key (let Alt+Super) run following command in terminal:

    gsettings set org.compiz.integrated show-hud "['<Alt><Super>']"
    

Now when you press only Alt then HUD not shown. But it is configured to shown by Alt+Super!

You can set valid Key-Combination instead of "['<Alt><Super>']".

Pandya
  • 35,771
  • 44
  • 128
  • 188
  • I restored using gsettings set org.compiz.integrated show-hud "['<Alt><Super>']" thanks! – insign Nov 19 '14 at 20:35
  • What's the difference between using this and dconf write/read? – gonzobrains Jan 08 '15 at 20:08
  • 1
    @gonzobrains Visit https://wiki.gnome.org/action/show/Projects/dconf which states dconf is a low-level configuration system. Its main purpose is to provide a backend to GSettings on platforms that don't already have configuration storage systems. – Pandya Jan 09 '15 at 12:45
  • 2
    @gonzobrains At API Also Note: Most applications will not want to interface directly with dconf, but rather with GSettings. – Pandya Jan 09 '15 at 12:47
  • I have been able to use gsettings to disable key combinations under Ubuntu 14.04 but this doesn't seem to work with 12.04. – gonzobrains Jan 15 '15 at 22:28
  • 1
    @gonzobrains 12.04 uses gconf, not dconf/gsettings – wisbucky Mar 14 '17 at 23:10
  • @gonzobrains, https://askubuntu.com/q/249887/372612 – Victor Yarema Aug 20 '18 at 22:45
  • This has no effect on my recent Ubuntu. Does anybody know how to disable showing the hud via Alt on Ubuntu 19.10? – kvz Nov 22 '19 at 11:12
16

On "Ubuntu 13.04 (raring)" you can execute:

disable HUD:

dconf write /org/compiz/integrated/show-hud '[""]'

enable/reset HUD ('Alt L'):

dconf write /org/compiz/integrated/show-hud '["&lt;Alt&gt;"]'
R.Rettig
  • 161
  • 1
  • 2
15

Well it's Called HUD. The new feature of Unity.

To prevent it from appearing, you can disable its key binding in keyboard shortcuts.

Open system settings by going to Session Indicator in Unity panel.

enter image description here

In system settings select Keyboard. Under Shortcuts tab, Click on `Key to show the HUD. and press Backspace to disable it. That's it!

enter image description here

Basharat Sialvi
  • 24,046
  • 8
  • 62
  • 82
10

In Ubuntu 12.04 I changed shortcut for summoning HUD in System Settings... > Keyboard > Shortcuts > Launchers > Key to show the HUD.

Now my left Alt is happy again :-)

0

In the system settings, just change the keyboard shortcut for "Key to show the HUD" (under 'Launchers'). As a suggestion, set it to activate when both the alt keys are pressed at the same time, instead of just one. It makes using VMs much less annoying.

yea55
  • 29
-3

Ubuntu 14.04.1: Opening an Emacs Session in which Typing Alt doesn't Open the HUD.

  1. In the Desktop environment, type Ctrl+Alt+F1 to enter a terminal screen.
  2. Enter your username and password as prompted.
  3. At the command prompt, open an Emacs session by typing emacs.
  4. Now, using Alt as Meta won't open the HUD.
  5. Return to the Desktop at any time by typing Alt+F7.

Source: An Introduction to the Command Line_ (p.12) on the FLOSS Manuals page.

Fabby
  • 34,259
bci_
  • 1
  • 1
    Telling the user to bail out to one of the ttys isn't a helpful option for most users and, on some computers, isn't usable. I have a laptop with a 4K display that produce text that is pretty much illegible at a reasonable distance. –  Aug 02 '16 at 02:21