maemo.org - Talk

maemo.org - Talk (https://talk.maemo.org/index.php)
-   Development (https://talk.maemo.org/forumdisplay.php?f=13)
-   -   [N900] Script with desktop shortcut (https://talk.maemo.org/showthread.php?t=58613)

JonWW 2011-02-10 19:11

Re: [N900] Script with desktop shortcut
 
Guessing here, try adding
Code:

sleep 100000
to the end of your script.

raffe 2011-02-10 19:48

Re: [N900] Script with desktop shortcut
 
Thanks for the tip, but still nothing. I thought I try something simple, but I cant even do this with a script:
1. Start x terminal
2. run the command
ls

Copernicus 2011-02-10 20:28

Re: [N900] Script with desktop shortcut
 
Quote:

Originally Posted by raffe (Post 941061)
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 think explicitly calling osso-xterm with an exec flag from the shell script should do what you are saying here. Something like this:

Code:

#!/bin/sh
/usr/bin/osso-xterm -e "nohup x11vnc -forever"

Note: don't use the "&" flag, or the xterm will spawn off an independent x11vnc process and immediately close! :)

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...

raffe 2011-02-11 13:12

Re: [N900] Script with desktop shortcut
 
Quote:

Originally Posted by Copernicus (Post 941243)
I think explicitly calling osso-xterm with an exec flag from the shell script should do what you are saying here. Something like this:

Code:

#!/bin/sh
/usr/bin/osso-xterm -e "nohup x11vnc -forever"

Note: don't use the "&" flag, or the xterm will spawn off an independent x11vnc process and immediately close! :)

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...

Thanks for the tip, but not really there yet :o This works great!
Code:

#!/bin/sh
/usr/bin/osso-xterm -e "fennec"

This don't work, shows up on screen and the dissapears directly
Code:

#!/bin/sh
/usr/bin/osso-xterm -e "nohup x11vnc -forever"

Maybe I need to do something else when its a "terminal command"?

nicolai 2011-02-11 13:20

Re: [N900] Script with desktop shortcut
 
try this, make a script (say "xvncnohup.sh)":
Code:

#!/bin/sh
nohup x11vnc -forever &
/bin/sh

Put this script in /usr/bin
make a desktop file with the line
Exec=osso-xterm "/usr/bin/xvncnohup.sh"

Nicolai

raffe 2011-02-11 13:40

Re: [N900] Script with desktop shortcut
 
Quote:

Originally Posted by nicolai (Post 942256)
try this, make a script (say "xvncnohup.sh)":
Code:

#!/bin/sh
nohup x11vnc -forever &
/bin/sh

Put this script in /usr/bin
make a desktop file with the line
Exec=osso-xterm "/usr/bin/xvncnohup.sh"

Nicolai

I LOVE YOU! :p

It works, thank you! :D

one1002 2011-02-17 10:19

Re: [N900] Script with desktop shortcut
 
hi..what if i want to show the output of the script?for example,

on the .desktop entry, the exec line is like this

Code:

Exec=/bin/busybox sh -c 'echo /path/to/script.sh | sudo gainroot'
however, it didn't show the output..just a blank(black) with the loading icon, then closes..

i put the script at /home/user..

how do i get the .desktop to show the output of the script?

one1002 2011-02-19 18:45

Re: [N900] Script with desktop shortcut
 
anyone? =)

xsmabbs 2012-03-26 14:00

Re: [N900] Script with desktop shortcut
 
?????i don't see

x_mony 2013-08-30 10:22

Re: [N900] Script with desktop shortcut
 
hello guys,
i need some help out here, i downloaded a script (evil ap.sh) and i was wondering if i can link it to the Desktop (like the ones in the pwnie express image) so that i would press the icon and the script would run automatically instead of "cd" in xterm to mydocs and execute it.
any help appreciated and thanks in advance


All times are GMT. The time now is 23:24.

vBulletin® Version 3.8.8