View Single Post
Posts: 152 | Thanked: 41 times | Joined on Dec 2009 @ Sydney
#55
Originally Posted by paulkoan View Post
Does anyone know why this doesn't work:

Code:
[Desktop Entry]
Encoding=UTF-8
Version=0.1
Type=Application
Terminal=true
Name=ssh hostname
Exec=/usr/bin/ssh hostname
Icon=
I am thinking that "Terminal=true" means that this command should be executed within an osso-term session in any case.

Yet instead we must do this:

Code:
Terminal=true
Exec=/usr/bin/osso-xterm 'ssh hostname'
What does terminal=true mean then?

Ahh does single quoting the argument to osso-xterm allow more than one argument [inside the quote]?