F11 makes a window go full screen. Is there a shortcut that minimizes a window? I am using Arch Linux with Gnome Shell.
- 1,542
7 Answers
Gnome Shell actually supports this. Super+H is the default key. If you want to change the key go to:
Settings -> Keyboard -> Windows -> Hide Window
Since this answer has gained some traction it is good to also know that:
- This works on MacOS as well.
- This does not work on Windows, however, you can achieve the same effect by using a tool like AutoHotkey.
- 1,542
I know the OP didn't ask for it but for the sake of completeness, Super+D minimizes all windows (think of it as "show Desktop"). Ubuntu 19.04, Gnome 3.32.1.
Using gsettings:
$ gsettings get org.gnome.desktop.wm.keybindings minimize
['<Super>h']
Set Super+Shift+H):
$ gsettings set org.gnome.desktop.wm.keybindings minimize "['<Super><Shift>h']"
- 203
- 2
- 8
On the GNOME desktop environment, you can use CTRL-ALT-D to minimise all and give focus to the desktop. You can also use ALT-F9 to minimise the current window. I think these are the same for Ubuntu/Unity.
- 81
This wasn't set as a default for my environment, but setting it in Gnome 43.3 went as follows:
- Open Settings.
<Super> type Settings <Enter> - Navigate to Keyboard.
Left pane - Select View and Customize Shortcuts.
Bottom - Use Search to find Hide all normal windows under Navigation.
- Set shortcut as desired. For example, I used Super + D.
- 21
- 1
works in gnome
super+down(↓)
For minimizing the window size of an application
super+up(↑)
for maximizing the window size of an application
super+right(→)
for throughing application window to right side of monitor screen
super+left(←)
same as above
- 11
- 1
2023 in Debian 12 + Gnome 43 + Wayland
Not sure what people mean by super key. It is:
"Command" key + "H" key
- 11