Ubuntu – How to change the default terminal to GNOME Terminal rather than Terminator

command linegnome-terminal

I was wondering how I can go back to using the GNOME Terminal as my default terminal in Ubuntu rather than having Terminator as my default. Also, I do not want to uninstall Terminator, I just don't want to have it as my default one.

Best Answer

There are two ways to achieve this.

  1. Updating the alternatives: For this run

    sudo update-alternatives --config x-terminal-emulator
    

    and select the number corresponding to /usr/bin/gnome-terminal.wrapper. This will set GNOME terminal as the default entry under x-terminal-emulator. But this might change if some other new terminal is installed in future since that installation may edit default value for x-terminal-emulator.

  2. Setting GNOME terminal as default: For this you can run

    gsettings set org.gnome.desktop.default-applications.terminal exec 'gnome-terminal'