2

I know how to add a command to the Unity Launcher, but don't know how to have automatically opened terminal for the command.

Especially needed when sudo command needs password or command result should be seen.

Esamo
  • 1,522
  • 2
  • 16
  • 28

1 Answers1

4

You have two options to open a terminal or uxterm with already running a command:

uxterm -e <command>

Or

gnome-terminal -x <command>

For multiple commands to be already run:

gnome-terminal -x bash -c "<command1>; <command2>; <command3>"