I am running Ubuntu GNOME 15.10 with GNOME 3.18 and would like to know if there is some way to get CTRL + ALT + T to open a new Terminal window even if one is already open (that is rather than just bring the currently open one to the front)?
Asked
Active
Viewed 6.5k times
16
-
In my installation CTRL+ALT+T always opens a new terminal regardless (GNOME 3.16.4). – kos Nov 18 '15 at 13:12
-
In every gnome install I've just added "gnome-terminal" as a custom shortcut, and it's worked exactly as I expected it to, it opens a new terminal window. Is there some functionality you want that I'm missing? – Mischka Nov 18 '15 at 15:05
-
1@Mischka: No, I think that for some reason it doesn't work quite right on my version... But the current accepted answer seems to fix that. – Nov 18 '15 at 16:41
2 Answers
15
The funny thing is that on Unity, CTRL + ALT + T does open a new window, apparantly not on Gnome...
To make the setup:
First disable the existing command/key combination with the command:
gsettings set org.gnome.settings-daemon.plugins.media-keys terminal ""
Which will make CTRL + ALT + T "available" again for another command.
Now open keyboard settings: System Settings > "Keyboard" > "Shortcuts" > "Custom Shortcuts". Click the "+" and add the command:
gnome-terminal --window-with-profile=<profilename>
to CTRL + ALT + T, where
<profilename>
is the name of your profile, most likelyDefault
From man gnome-terminal
:
--window-with-profile=PROFILENAME
Open a new window containing a tab with the given profile.
More than one of these options can be provided.

Jacob Vlijm
- 83,767
-
1The answer is good, but also with
'<Primary><Alt>t'
forgsettings get org.gnome.settings-daemon.plugins.media-keys terminal
GNOME opens a new terminal per default. – A.B. Nov 18 '15 at 12:13 -
@A.B. Good to know, apparently on OP's system it didn't for some reason... – Jacob Vlijm Nov 18 '15 at 12:15
-
1
-
1@A.B. Indeed. I'm on GNOME and Ctrl+Alt+T opens a new terminal no matter if I have one opened already. – kos Nov 18 '15 at 12:20
13
It's pretty easy to make Ctrl+Alt+T alive in gnome:
Search for Keyboard shortcuts in Gnome home menu
Add a custom shortcut in Keyboard
Add (+)
- Name: gnome-terminal
- Command:
gnome-terminal
- Ctrl+Alt+T

David Foerster
- 36,264
- 56
- 94
- 147

Kurian Benoy
- 661