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)

Saturn 2010-11-08 23:19

Re: [N900] Script with desktop shortcut
 
OK,

Put this in a script (using leafpad for example, but not notes) called myscript.sh in the folder /home/user/

Make it execulable: chmod 755 /home/user/myscript.sh

Code:

#!/bin/sh

# gain superuser rights.

if [ `id -u` != 0 ] ; then
    exec sudo gainroot <<EOF
exec sh $0 $*
EOF
        exit $?
fi 

# put your code below

rmmod wl12xx;
rmmod mac80211;
rmmod cfg80211;
insmod /home/user/MyDocs/neo/compat.ko;
insmod /home/user/MyDocs/neo/rfkill_backport.ko;
insmod /home/user/MyDocs/neo/cfg80211.ko;
insmod /home/user/MyDocs/neo/mac80211.ko;
insmod /home/user/MyDocs/neo/wl1251.ko;
insmod /home/user/MyDocs/neo/wl1251_spi.ko;

exit;

execute it as user by simply in an xterm:
/home/user/myscript.sh

If it does what you need then in your desktop file replace the exec line with:
Exec=/home/user/myscript.sh

JonWW 2010-11-08 23:21

Re: [N900] Script with desktop shortcut
 
So if you type each command manually, then it works fine?
But if all commands are in a script then it doesn't?

You could try putting a sleep command inbetween each command, I don't know if that would work.

Saturn 2010-11-08 23:25

Re: [N900] Script with desktop shortcut
 
ooh, you changed your post while i was writing too..

How did you make the script? using notes or in windows?

Kieron 2010-11-08 23:26

Re: [N900] Script with desktop shortcut
 
Using Mac TexEdit, converted files to plantext. Uploaded via sftp on FileZilla.

Saturn 2010-11-08 23:29

Re: [N900] Script with desktop shortcut
 
1 Attachment(s)
Quote:

Originally Posted by Kieron (Post 867514)
Using Mac TexEdit, converted files to plantext. Uploaded via sftp on FileZilla.

how about if you use this and rename it to sh?

Kieron 2010-11-08 23:30

Re: [N900] Script with desktop shortcut
 
Quote:

Originally Posted by Saturn (Post 867512)
ooh, you changed your post while i was writing too..

How did you make the script? using notes or in windows?

It works. The myscript.sh.

I ****ing love you. Ah, you're lucky I don't know you IRL, I might just have to rape you!

I'm gonna change the .desktop files now and make sure it does indeed work.

Thanks! You're awesome!

Saturn 2010-11-08 23:34

Re: [N900] Script with desktop shortcut
 
Quote:

Originally Posted by Kieron (Post 867517)
It works. The myscript.sh.

I ****ing love you. Ah, you're lucky I don't know you IRL, I might just have to rape you!

I'm gonna change the .desktop files now and make sure it does indeed work.

Thanks! You're awesome!

Man!! My wife just needs an excuse to forbid me to visit here.. you ain't helping :D

JonWW 2010-11-11 16:00

Re: [N900] Script with desktop shortcut
 
Quote:

Originally Posted by Kieron (Post 867514)
Using Mac TexEdit, converted files to plantext. Uploaded via sftp on FileZilla.

Ah! are you a Mac user?

Linux uses LF to denote new lines
Windows uses CRLF to denote new lines
Do Macs use CR to denote new lines? I think they might.

Linux throws a wobbly at CR new line characters saying stuff like 'no such file or directory' and 'does not exist' errors.

ysn5582 2010-12-30 12:29

Re: [N900] Script with desktop shortcut
 
still not working for me, can you explain to me step by step, thanks

Quote:

Originally Posted by Saturn (Post 867507)
OK,

Put this in a script (using leafpad for example, but not notes) called myscript.sh in the folder /home/user/

Make it execulable: chmod 755 /home/user/myscript.sh

Code:

#!/bin/sh

# gain superuser rights.

if [ `id -u` != 0 ] ; then
    exec sudo gainroot <<EOF
exec sh $0 $*
EOF
        exit $?
fi 

# put your code below

rmmod wl12xx;
rmmod mac80211;
rmmod cfg80211;
insmod /home/user/MyDocs/neo/compat.ko;
insmod /home/user/MyDocs/neo/rfkill_backport.ko;
insmod /home/user/MyDocs/neo/cfg80211.ko;
insmod /home/user/MyDocs/neo/mac80211.ko;
insmod /home/user/MyDocs/neo/wl1251.ko;
insmod /home/user/MyDocs/neo/wl1251_spi.ko;

exit;

execute it as user by simply in an xterm:
/home/user/myscript.sh

If it does what you need then in your desktop file replace the exec line with:
Exec=/home/user/myscript.sh


raffe 2011-02-10 16:23

Re: [N900] Script with desktop shortcut
 
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?


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

vBulletin® Version 3.8.8