How do I set default terminal to Terminator?

UbuntuTerminal

Ubuntu Problem Overview


I'd like to have Terminator replace the default terminal. For instance, when right-clicking inside a folder then selecting "open terminal", I'd like Terminator to open instead of the default.

How can I achieve this using Xubuntu?

Ubuntu Solutions


Solution 1 - Ubuntu

From within a terminal, try

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

Select the desired terminal from the list of alternatives.

Solution 2 - Ubuntu

change Settings Manager >> Preferred Applications >> Utilities

Solution 3 - Ubuntu

Copy-paste the following into your current terminal:

gsettings set org.gnome.desktop.default-applications.terminal exec /usr/bin/terminator
gsettings set org.gnome.desktop.default-applications.terminal exec-arg "-x"

This modifies the dconf to make terminator the default program. You could also use dconf-editor (a GUI-based tool) to make changes to the dconf, as another answer has suggested. If you would like to learn and understand more about this topic, this may help you.

Solution 4 - Ubuntu

devnull is right;

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

works. See here and here, and some comments in here.

Solution 5 - Ubuntu

open dconf Editor and go to org > gnome > desktop > application > terminal and change gnome-terminal to terminator

Solution 6 - Ubuntu

In xfce (e.g. on Arch Linux) you can change the parameter TerminalEmulator:

 TerminalEmulator=xfce4-terminal

to

TerminalEmulator=custom-TerminalEmulator

The next time you want to open a terminal window, xfce will ask you to choose an emulator. You can just pick /usr/bin/terminator.

System Defaults

/etc/xdg/xfce4/helpers.rc

User Defaults

/home/USER/.config/xfce4

Solution 7 - Ubuntu

The only way that worked for me was

  1. Open nautilus or nemo as root user gksudo nautilus
  2. Go to /usr/bin
  3. Change name of your default terminal to any other name for exemple "orig_gnome-terminal"
  4. rename your favorite terminal as "gnome-terminal"

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionRunning TurtleView Question on Stackoverflow
Solution 1 - UbuntudevnullView Answer on Stackoverflow
Solution 2 - Ubuntuuser2805885View Answer on Stackoverflow
Solution 3 - UbuntuAkyidrianView Answer on Stackoverflow
Solution 4 - UbuntuWillCView Answer on Stackoverflow
Solution 5 - UbuntuNatwar SinghView Answer on Stackoverflow
Solution 6 - UbuntuJonathan KomarView Answer on Stackoverflow
Solution 7 - UbuntuRicardoUlloaView Answer on Stackoverflow