We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Usually /usr/bin/x-terminal-emulator is a symlink to your preferred default terminal emulator. So normal applications can launch the correct terminal.
/usr/bin/x-terminal-emulator
In your case /usr/bin/x-terminal-emulator either:
-e
On Debian and Ubuntu-based distros, you would execute sudo update-alternatives --config x-terminal-emulator and choose the correct link in the UI.
sudo update-alternatives --config x-terminal-emulator
On other distros, you could use sudo ln -sT <your terminal emulator path> /usr/bin/x-terminal-emulator.
sudo ln -sT <your terminal emulator path> /usr/bin/x-terminal-emulator
For some additional information, there is a good answer on stackexchange: http://unix.stackexchange.com/questions/32547/how-to-launch-an-application-with-default-terminal-emulator-on-ubuntu