View Single Post
Posts: 21 | Thanked: 6 times | Joined on Apr 2010
#20
Hi!

I would like a shortcut that
1. opens X terminal
2. Runs
nohup x11vnc -forever&
3. And then waits there until I do a Ctrl+C

I have tried with a /usr/local/bin/StartVNCserver.sh with
Code:
#!/bin/sh
nohup x11vnc -forever&
And in /usr/share/applications/hildon/StartVNCserver.desktop I have
Code:
[Desktop Entry]
Encoding=UTF-8
Version=0.1
Type=Application
Terminal=true
Name=StartVNCserver
Exec=/usr/local/bin/StartVNCserver.sh
Icon=terminal
X-Osso-Type=application/x-executable
X-HildonDesk-ShowInToolbar=true
If I try with
Code:
Exec=osso-xterm
it opens a terminal, so I have also tried with
Code:
Exec=osso-xterm "nohup x11vnc -forever&"
But it don't stay there, it only closes down.

How can I do it?