I've just installed Ubuntu GNOME 16.04 and while trying to add terminix
as the default terminal emulator I messed up really bad the x-terminal-emulator
alternative, totally my fault!
I entered the update-alternatives --install
command wrong and now I don't have that alternative anymore, this is what I got now:
$ sudo update-alternatives --config x-terminal-emulator
There is only one alternative in link group x-terminal-emulator (providing /usr/bin/x-terminal-emulator): /usr/bin/gnome-terminal.wrapper
Nothing to configure.
update-alternatives: warning: forcing reinstallation of alternative /usr/bin/gnome-terminal.wrapper because link group x-terminal-emulator is broken
update-alternatives: warning: not replacing /usr/bin/x-terminal-emulator with a link
Fortunately, the only problem is that I can't use the Ctrl+Alt+T shortcut to open the terminal (or any terminal emulator for that matter). Invoking them with Super and searching using the name of the application works without any problem. Like I said, it's not a big problem but it bothers me having it.
I've tried reinstalling the emulators but without any luck. If you know any possible solution to my dilemma I'll really appreciated!
gsettings set org.gnome.desktop.default-applications.terminal exec 'x-terminal-emulator'
(replace thex-terminal-emulator
with whatever you want). As for the alternatives, I'd suggest you try--install
part again. Alternatives system is nothing more than symlinks, so you could also do that manually , link/etc/alternatives/x-terminal-emulator
to whatever terminal you want – Sergiy Kolodyazhnyy Jun 24 '16 at 06:02