![]() |
2011-02-10
, 19:11
|
|
Posts: 623 |
Thanked: 289 times |
Joined on Jan 2010
@ UK
|
#21
|
The Following User Says Thank You to JonWW For This Useful Post: | ||
![]() |
2011-02-10
, 19:48
|
Posts: 21 |
Thanked: 6 times |
Joined on Apr 2010
|
#22
|
The Following User Says Thank You to raffe For This Useful Post: | ||
![]() |
2011-02-10
, 20:28
|
|
Posts: 1,986 |
Thanked: 7,698 times |
Joined on Dec 2010
@ Dayton, Ohio
|
#23
|
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
#!/bin/sh /usr/bin/osso-xterm -e "nohup x11vnc -forever"
The Following User Says Thank You to Copernicus For This Useful Post: | ||
![]() |
2011-02-11
, 13:12
|
Posts: 21 |
Thanked: 6 times |
Joined on Apr 2010
|
#24
|
I think explicitly calling osso-xterm with an exec flag from the shell script should do what you are saying here. Something like this:
Note: don't use the "&" flag, or the xterm will spawn off an independent x11vnc process and immediately close!Code:#!/bin/sh /usr/bin/osso-xterm -e "nohup x11vnc -forever"
Edit: Or not. I just tried running osso-xterm -e "fennec &", and it worked exactly the same as just osso-xterm -e "fennec". Oh well, guess you can't use that sort of flag with -e...
#!/bin/sh /usr/bin/osso-xterm -e "fennec"
#!/bin/sh /usr/bin/osso-xterm -e "nohup x11vnc -forever"
The Following User Says Thank You to raffe For This Useful Post: | ||
![]() |
2011-02-11
, 13:20
|
|
Posts: 1,637 |
Thanked: 4,424 times |
Joined on Apr 2009
@ Germany
|
#25
|
#!/bin/sh nohup x11vnc -forever & /bin/sh
![]() |
2011-02-11
, 13:40
|
Posts: 21 |
Thanked: 6 times |
Joined on Apr 2010
|
#26
|
try this, make a script (say "xvncnohup.sh)":
Put this script in /usr/binCode:#!/bin/sh nohup x11vnc -forever & /bin/sh
make a desktop file with the line
Exec=osso-xterm "/usr/bin/xvncnohup.sh"
Nicolai
The Following User Says Thank You to raffe For This Useful Post: | ||
![]() |
2011-02-17
, 10:19
|
Posts: 309 |
Thanked: 115 times |
Joined on May 2010
@ Malaysia
|
#27
|
Exec=/bin/busybox sh -c 'echo /path/to/script.sh | sudo gainroot'
The Following User Says Thank You to one1002 For This Useful Post: | ||
![]() |
2013-08-30
, 10:22
|
Posts: 24 |
Thanked: 7 times |
Joined on Apr 2013
|
#30
|
The Following User Says Thank You to x_mony For This Useful Post: | ||