maemo.org - Talk

maemo.org - Talk (https://talk.maemo.org/index.php)
-   OS2008 / Maemo 4 / Chinook - Diablo (https://talk.maemo.org/forumdisplay.php?f=29)
-   -   osso_xterm toolbar shortcut (https://talk.maemo.org/showthread.php?t=16749)

free 2008-02-17 16:37

Re: osso_xterm toolbar shortcut
 
Quote:

Originally Posted by micampe (Post 143588)
use this command:
Code:

sh -c "sudo gainroot"

osso-xterm -e "sudo gainroot"

bunanson 2008-02-17 17:22

Re: osso_xterm toolbar shortcut
 
How do you do a series of commands using alias, not script? say, sudo gainroot, echo 'rebooting....', reboot.?

How do you transfer input parameters using alias, not script? say, leafpad, echo 'file?' #filename?

TIA,

bun

free 2008-02-17 17:39

Re: osso_xterm toolbar shortcut
 
Quote:

Originally Posted by bunanson (Post 143654)
How do you do a series of commands using alias, not script? say, sudo gainroot, echo 'rebooting....', reboot.?

That's not possible. sudo gainroot will open a new shell and then your alias is lost. Also on a security point of view, the user cannot interact with a root process. Which is good..
Quote:

How do you transfer input parameters using alias, not script? say, leafpad, echo 'file?' #filename?
Not possible also. Leafpad uses a widget which takes Xwindow input. If it would take command line input, then we could do something like
popen("leafpad") and then use the descriptor to write into it.

In this case, we have to create use input at X level. The only way that I know (I use it at work) is xreplay or xnee.
xreplay < "go_to_leafpad_window,click file, click open, type $filename, click ok"

Ugly but saved me for GUI locked app.

edit: I think the leafpad that I updated for OS2008 takes the filename as parameter, if this is specific to leafpad.

bunanson 2008-02-17 18:41

Re: osso_xterm toolbar shortcut
 
For the OP, here is a small script for putting a reboot button on your desktop, you do have to install osso-statusbar, (go http://www.gronmayer.com/it/index.php, choose your OS, and search for statusbar, pick the one version tschmidt v.0.6.1chinook1 if you are 2008OS, and use the green install button, the other button does not work), and copy the script to /home/user and make it executable by,

chmod +x /home/user/bunreboot.sh

you can always modify it to add your commands.

bun


bunreboot.sh:
__________________________________________________ ____
#!/bin/sh
if [ `id -u` != 0 ] ; then
exec sudo gainroot <<EOF
exec sh $0 $*
EOF
exit $?
fi
exec reboot
__________________________________________________ ______

earth2marsh 2008-02-18 05:26

Re: osso_xterm toolbar shortcut
 
Put this in as the value for your Toolbar shortcut:
Code:

s . u . d . o . KP_Space . g . a . i . n . r . o . o . t
(Note: the spaces around the dots/periods are important!)

tobiasj 2008-02-18 06:21

Re: osso_xterm toolbar shortcut
 
Quote:

Originally Posted by earth2marsh (Post 143927)
Put this in as the value for your Toolbar shortcut:
Code:

s . u . d . o . KP_Space . g . a . i . n . r . o . o . t
(Note: the spaces around the dots/periods are important!)

that works great thanks, but is there a way to have it "return" or enter at the end of the line in the shortcut?

-John

ridgeback 2008-02-18 06:24

Re: osso_xterm toolbar shortcut
 
So, does anyway know how to run shell commands from a toolbar shortcut?

earth2marsh 2008-02-18 07:09

Re: osso_xterm toolbar shortcut
 
Quote:

Originally Posted by tobiasj (Post 143944)
that works great thanks, but is there a way to have it "return" or enter at the end of the line in the shortcut?

Yes, add " . KP_Enter" to the end. Like this:
Code:

s . u . d . o . KP_Space . g . a . i . n . r . o . o . t . KP_Enter

earth2marsh 2008-02-18 07:13

Re: osso_xterm toolbar shortcut
 
Quote:

Originally Posted by ridgeback (Post 143948)
So, does anyway know how to run shell commands from a toolbar shortcut?

Same idea: ./hi.sh would be:
Code:

period . slash . h . i . period . s . h . KP_Enter
In general, use these codes where you need them, and be sure to put a period between each keystroke to stick them all together.

free 2008-02-18 09:08

Re: osso_xterm toolbar shortcut
 
well done bun, the exec function does the trick
I never think about it

But I don't understand the stuffs with the period. humm:confused:


All times are GMT. The time now is 07:48.

vBulletin® Version 3.8.8