5

I recently upgraded from Ubuntu 16.10 to 17.04. I also noticed that my familiar routine of right-clicking the terminal icon in the launcher and selecting "open new terminal" no longer exists. Is there a way I can restore that "open new terminal" right-click option to the launcher?

I learned from How to open mutilple instances of the Terminal? that I can use Ctrl+Alt+T to open a new terminal even faster, or I can Window+A then type terminal. These are great shortcuts, but separate from this question.

mightypile
  • 1,192
  • Have you checked the solutions here? They may or may not be outdated. – b_laoshi Apr 24 '17 at 01:05
  • @b_laoshi - Thx, but those are specific to using the right-click within nautilus to get a terminal at a particular $PWD, as opposed to right-clicking from launcher. I just tested nautilus and I can open with a right-click there. Probably added as a default by now. – mightypile Apr 24 '17 at 01:10
  • My bad. I really should have read more closely. You may be aware, but Ubuntu 18.04 is ditching Unity for Gnome. If you're going to stick with the default interface, maybe an early switch to Ubuntu Gnome is worth considering as well, maybe not. I don't know for sure, but I wouldn't be surprised if the right-click option you describe still exists in Ubuntu Gnome 17.04. Sorry I wasn't much help. – b_laoshi Apr 24 '17 at 01:31

1 Answers1

6

I did also a fresh install of 17.04 coming from 16.04 and found the same issue.

I managed to get it working with:

sudo pico(or whatever editor) /usr/share/applications/org.gnome.Terminal.desktop 

and commented out this line:

OnlyShowIn=GNOME;Unity7;

with end result:

#OnlyShowIn=GNOME;Unity7;

For now is working for me. Hope this helps you as well.

emvidi
  • 2,426
  • Worked beautifully for me. I didn't even have to reboot or restart unity or anything. Thanks! – mightypile Apr 25 '17 at 21:49
  • I raised the same question here at https://askubuntu.com/questions/904680/unity-17-04-desktop-launcher-problem-for-terminal?rq=1. I reported this bug at https://bugs.launchpad.net/ubuntu/+source/gnome-terminal/+bug/1681523. Be aware that you may need change also/instead the file at /usr/share/applications/gnome-terminal.desktop – JonBrave Sep 08 '17 at 10:56