maemo.org - Talk

maemo.org - Talk (https://talk.maemo.org/index.php)
-   Applications (https://talk.maemo.org/forumdisplay.php?f=41)
-   -   [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread (https://talk.maemo.org/showthread.php?t=45388)

stevomanu 2011-10-03 11:28

Re: [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread
 
Quote:

Originally Posted by eL.ectron1k (Post 1097071)
Hello guys!

Can u tell me, how can i save all configureation?

Sometimes its crashes..and all my configs need to be PURGED.

/ And all widgets on desktop becomes - appOK - With default image :C /

Than i need add them again.. cant understand why..


Thank you!!

mine has started to do this aswell , also if i try an create new beecon it always loads up last one i created its a nightmare ...

also im still have my issue trying to run command as root in xterminal

Code:

ruby1.8 /home/user/msf3/msfconsole -L
i need it to open xtermianl an run that , tryed so many different commands an nothing ..


hahah fixed it thanks to doc on irc heres the command thats works ....


Code:

osso-xterm -e "sudo ruby1.8 /home/user/msf3/msfconsole -L"

yay im so happy haha

whayong 2011-10-06 09:37

Re: [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread
 
I can't find QBW on any of the repos. Where did it go?

stevomanu 2011-10-06 10:51

Re: [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread
 
its still there , have you got the correct repos added have a look here

http://maemo.org/packages/view/queen-beecon/

good luck

whayong 2011-10-06 19:23

Re: [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread
 
Quote:

Originally Posted by stevomanu (Post 1103979)
its still there , have you got the correct repos added have a look here

http://maemo.org/packages/view/queen-beecon/

good luck

Nevermind, I'm an idiot. Apparently I already had it installed. Hahahaha. Thanks!

No!No!No!Yes! 2011-10-07 04:14

Re: [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread
 
Hi, All... please karma here so latest fixes can go to extras:
http://maemo.org/packages/package_instance/view/fremantle_extras-testing_free_armel/queen-beecon/1.3.3/

moudy91 2011-10-19 15:22

Re: [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread
 
HI guys i have a question
i have like 10 scripts on my n900 desktop thats mean 10 qbw like bluetooth on and off in one qbw and the other silent profile and general profile , my question is can i combine this 2 commands in one qbw,
1.bluetooth
2. profile
and on my desktop i click 1= bluetooth ( bluetooth on )
and i click 2= profile ( general or silent profile )
PS this scripts in one QBW
thank you

stevomanu 2011-10-19 15:27

Re: [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread
 
Quote:

Originally Posted by moudy91 (Post 1110951)
HI guys i have a question
i have like 10 scripts on my n900 desktop thats mean 10 qbw like bluetooth on and off in one qbw and the other silent profile and general profile , my question is can i combine this 2 commands in one qbw,
1.bluetooth
2. profile
and on my desktop i click 1= bluetooth ( bluetooth on )
and i click 2= profile ( general or silent profile )
PS this scripts in one QBW
thank you

i think its possable check the wiki about halfway down just after advnce setting section you will see a picture test hot spot im sure thats it ..

http://wiki.maemo.org/Queen_BeeCon_Widget

moudy91 2011-10-19 15:32

Re: [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread
 
Quote:

Originally Posted by stevomanu (Post 1110954)
i think its possable check the wiki about halfway down just after advnce setting section you will see a picture test hot spot im sure thats it ..

http://wiki.maemo.org/Queen_BeeCon_Widget

already i check it ,
the $QBW_HOTSPOT_PRESS maybe this is the answer but i didn't understand it.
most combine 10 or more commands in one single qbw right ?

stevomanu 2011-10-19 15:37

Re: [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread
 
Quote:

Originally Posted by moudy91 (Post 1110955)
already i check it ,
the $QBW_HOTSPOT_PRESS maybe this is the answer but i didn't understand it.
most combine 10 or more commands in one single qbw right ?

have a look at this script an see if you can modify to suit your needs or just wait for No!No!No!Yes! he will help you out ...

moudy91 2011-10-19 15:43

Re: [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread
 
Quote:

Originally Posted by stevomanu (Post 1110957)
have a look at this script an see if you can modify to suit your needs or just wait for No!No!No!Yes! he will help you out ...

thank you but i didn't find out what am looking for, so i think i will wait No!No!No!Yes! maybe he will find me a way, thank you again

JonWW 2011-10-19 19:51

Re: [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread
 
Quote:

Originally Posted by moudy91 (Post 1110951)
HI guys i have a question
i have like 10 scripts on my n900 desktop thats mean 10 qbw like bluetooth on and off in one qbw and the other silent profile and general profile , my question is can i combine this 2 commands in one qbw,
1.bluetooth
2. profile
and on my desktop i click 1= bluetooth ( bluetooth on )
and i click 2= profile ( general or silent profile )
PS this scripts in one QBW
thank you

Here you go:

To flip between silent and general profiles use:
Code:

if [ `dbus-send --type=method_call --print-reply --dest=com.nokia.profiled /com/nokia/profiled com.nokia.profiled.get_profile|awk -F "\"" '/g/ {print $2}'` == "general" ];then
  dbus-send --type=method_call --dest=com.nokia.profiled /com/nokia/profiled com.nokia.profiled.set_profile string:"silent"
else
  dbus-send --type=method_call --dest=com.nokia.profiled /com/nokia/profiled com.nokia.profiled.set_profile string:"general"
fi
dbus-send --type=method_call --print-reply --dest=com.nokia.profiled /com/nokia/profiled com.nokia.profiled.get_profile|awk -F "\"" '/g/ {print $2}'|sed 's/^s/S/;s/^g/G/;s/^/Profile: /'

To flip Bluetooth on or off use:
Code:

if [ `dbus-send --system --print-reply --type=method_call --dest=org.bluez $(dbus-send --system --print-reply --dest=org.bluez / org.bluez.Manager.DefaultAdapter | awk -F'"' '/at/ {print $2}') org.bluez.Adapter.GetProperties|sed -n "/Powered/,/boolean/p"|tail -1|awk '{print $3}'` == "true" ];then
  dbus-send --system --type=method_call --dest=org.bluez $(dbus-send --system --print-reply --dest=org.bluez / org.bluez.Manager.DefaultAdapter | awk -F'"' '/at/ {print $2}') org.bluez.Adapter.SetProperty string:Powered variant:boolean:false
else
  dbus-send --system --type=method_call --dest=org.bluez $(dbus-send --system --print-reply --dest=org.bluez / org.bluez.Manager.DefaultAdapter | awk -F'"' '/at/ {print $2}') org.bluez.Adapter.SetProperty string:Powered variant:boolean:true
fi
dbus-send --system --print-reply --type=method_call --dest=org.bluez $(dbus-send --system --print-reply --dest=org.bluez / org.bluez.Manager.DefaultAdapter | awk -F'"' '/at/ {print $2}') org.bluez.Adapter.GetProperties|sed -n '/Powered/,/boolean/p'|tail -1|awk '{print $3}'|sed 's/true/ON/;s/false/OFF/;s/^/Bluetooth: /'


moudy91 2011-10-20 04:46

Re: [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread
 
Quote:

Originally Posted by JonWW (Post 1111064)
Here you go:

To flip between silent and general profiles use:
Code:

if [ `dbus-send --type=method_call --print-reply --dest=com.nokia.profiled /com/nokia/profiled com.nokia.profiled.get_profile|awk -F "\"" '/g/ {print $2}'` == "general" ];then
  dbus-send --type=method_call --dest=com.nokia.profiled /com/nokia/profiled com.nokia.profiled.set_profile string:"silent"
else
  dbus-send --type=method_call --dest=com.nokia.profiled /com/nokia/profiled com.nokia.profiled.set_profile string:"general"
fi
dbus-send --type=method_call --print-reply --dest=com.nokia.profiled /com/nokia/profiled com.nokia.profiled.get_profile|awk -F "\"" '/g/ {print $2}'|sed 's/^s/S/;s/^g/G/;s/^/Profile: /'

To flip Bluetooth on or off use:
Code:

if [ `dbus-send --system --print-reply --type=method_call --dest=org.bluez $(dbus-send --system --print-reply --dest=org.bluez / org.bluez.Manager.DefaultAdapter | awk -F'"' '/at/ {print $2}') org.bluez.Adapter.GetProperties|sed -n "/Powered/,/boolean/p"|tail -1|awk '{print $3}'` == "true" ];then
  dbus-send --system --type=method_call --dest=org.bluez $(dbus-send --system --print-reply --dest=org.bluez / org.bluez.Manager.DefaultAdapter | awk -F'"' '/at/ {print $2}') org.bluez.Adapter.SetProperty string:Powered variant:boolean:false
else
  dbus-send --system --type=method_call --dest=org.bluez $(dbus-send --system --print-reply --dest=org.bluez / org.bluez.Manager.DefaultAdapter | awk -F'"' '/at/ {print $2}') org.bluez.Adapter.SetProperty string:Powered variant:boolean:true
fi
dbus-send --system --print-reply --type=method_call --dest=org.bluez $(dbus-send --system --print-reply --dest=org.bluez / org.bluez.Manager.DefaultAdapter | awk -F'"' '/at/ {print $2}') org.bluez.Adapter.GetProperties|sed -n '/Powered/,/boolean/p'|tail -1|awk '{print $3}'|sed 's/true/ON/;s/false/OFF/;s/^/Bluetooth: /'




These scripts I know them and I know the flip, but I need to combine them into one qbw , when I click on the qbw on the left for example the Bluetooth flip will open and when I click on the qbw on the right the profile flip will open.
Thank you for your help again

LightRain 2011-10-20 05:36

Re: [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread
 
Quote:

Originally Posted by moudy91 (Post 1111185)
These scripts I know them and I know the flip, but I need to combine them into one qbw , when I click on the qbw on the left for example the Bluetooth flip will open and when I click on the qbw on the right the profile flip will open.
Thank you for your help again

You can create an invisible widget and put it on the left/right half of the visible widget.

moudy91 2011-10-20 06:55

Re: [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread
 
Quote:

Originally Posted by LightRain (Post 1111189)
You can create an invisible widget and put it on the left/right half of the visible widget.

No I think u did not understand me well
I want 1 qbw with 2 different command I repeat 1 qbw

LightRain 2011-10-23 13:28

Re: [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread
 
How can I make a widget not rotate when the phone is rotated?

trigaum 2011-10-25 01:20

Re: [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread
 
Hello guys! I'm making a WP7 tiles like desktop in my N900, and usign QBW. So, most of apps are working well, but "ossofilemanager", "sygic", "FreOffice", "notes" and "Calendar" are NOT working.
My method is adding CMD command "dbus-send --type=method_call --dest=com.nokia.HildonDesktop.AppMgr /com/nokia/HildonDesktop/AppMgr com.nokia.HildonDesktop.AppMgr.LaunchApplication string:"

The icon appears, but the apps doesnt open. The other apps are working well, only these are broken.
What im doing wrong?

thankyou

LightRain 2011-10-25 13:28

Re: [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread
 
Quote:

Originally Posted by trigaum (Post 1113147)
Hello guys! I'm making a WP7 tiles like desktop in my N900, and usign QBW. So, most of apps are working well, but "ossofilemanager", "sygic", "FreOffice", "notes" and "Calendar" are NOT working.
My method is adding CMD command "dbus-send --type=method_call --dest=com.nokia.HildonDesktop.AppMgr /com/nokia/HildonDesktop/AppMgr com.nokia.HildonDesktop.AppMgr.LaunchApplication string:"

The icon appears, but the apps doesnt open. The other apps are working well, only these are broken.
What im doing wrong?

thankyou

Go to /usr/share/applications/hildon and look for the file name of the app you want.


Anybody know how to make shortcut for categories (created with Catorise plus)?

J4ZZ 2011-11-22 16:29

Re: [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread
 
Hi everyone...

I could need some help here regarding

Quote:

Now keep adding back qbw widgets via desktop gear/menu until they are all restored. (don't issue any qbw configuration step until all qbws are restored)

My question is, is the above method the only possible way to restore/reload all beecons that are stored in /home/user/.queen_beecon ?!?

The thing is that it occasional happens that queen beecon stops working (I guess due to hildon-home doing something weird) If I then click on one of the beecons, all widgets on my desktops disappear.

Restarting phone doesn't help to restore them. All I can do is to manually reload every single beecon from desktop menu (via "Add widget")

I have more than 30 widgets to load so isn't there any command telling the engine to just reload every widget from /home/user/.queen_beecon ???


Thanks in advanced,

hopefully....

J4ZZ

vi_ 2011-11-22 16:35

Re: [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread
 
Quote:

Originally Posted by J4ZZ (Post 1127440)
Hi everyone...

I could need some help here regarding




My question is, is the above method the only possible way to restore/reload all beecons that are stored in /home/user/.queen_beecon ?!?

The thing is that it occasional happens that queen beecon stops working (I guess due to hildon-home doing something weird) If I then click on one of the beecons, all widgets on my desktops disappear.

Restarting phone doesn't help to restore them. All I can do is to manually reload every single beecon from desktop menu (via "Add widget")

I have more than 30 widgets to load so isn't there any command telling the engine to just reload every widget from /home/user/.queen_beecon ???


Thanks in advanced,

hopefully....

J4ZZ

You FAR too many widgets. At around 30 widgets QBW starts to freak the F* out all the time.

Either remove or consolidate some of your widgets.

kolos 2011-11-22 17:02

Re: [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread
 
Quote:

Originally Posted by J4ZZ (Post 1127440)
Hi everyone...

I could need some help here regarding




My question is, is the above method the only possible way to restore/reload all beecons that are stored in /home/user/.queen_beecon ?!?

The thing is that it occasional happens that queen beecon stops working (I guess due to hildon-home doing something weird) If I then click on one of the beecons, all widgets on my desktops disappear.

Restarting phone doesn't help to restore them. All I can do is to manually reload every single beecon from desktop menu (via "Add widget")

I have more than 30 widgets to load so isn't there any command telling the engine to just reload every widget from /home/user/.queen_beecon ???


Thanks in advanced,

hopefully....

J4ZZ

Try this solution. ;)

J4ZZ 2011-11-23 21:11

Re: [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread
 
Quote:

Originally Posted by kolos (Post 1127458)

Brilliant, thx mate. ;)

accountvip 2011-11-24 11:49

Re: [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread
 
Which language command of QBW use, guys?

StocChr 2011-11-25 08:46

Re: [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread
 
hi guys,

my devicescreen bricked after contact with water, after changing the screen the device works flawless.

only all queen beecon widgets are gone ( it lost the command and the picture information )

is it possible to restore these from an old backupmenu file, or where can i get my old settings back?

thanks!

cheers

LightRain 2011-11-25 09:09

Re: [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread
 
The data of QBWs are stored in /home/user/.queen_beecon
If you have backed up that file, copy it and reboot.

toxaris 2011-12-08 13:02

Re: [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread
 
Hello.
Im not very familiar with QBW. But I have a question.
Is there a way to create a widget that shows unread emails?
Or maybe something like Iphones email-icon that show you the number of unread emails?

stevomanu 2011-12-08 14:19

Re: [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread
 
maybe you could edit this some how to get it to work

http://talk.maemo.org/showthread.php?t=47689

or check the wiki http://wiki.maemo.org/Queen_BeeCon_Widget

Quote:

Originally Posted by toxaris (Post 1134985)
Hello.
Im not very familiar with QBW. But I have a question.
Is there a way to create a widget that shows unread emails?
Or maybe something like Iphones email-icon that show you the number of unread emails?


Julien_2006 2011-12-19 22:06

Re: [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread
 
Hi, I have a request. I have looked at the wiki and read some messages of this tread but do not find a tips to get QWB doing what I want.
Here what I want :
When I get around an identified cell tower, QWB put internet (2G/3G) connections off and when I get around an other cell tower QWB put internet connection on. To get read of connection/deconnection when I am underground in the tube for an hour)
In another hand, I would like to do the same thing whith wlan (when i am connected to the nearest cell id from my home/sister's home/friend's home the wifi is on if not, the wifi is off.
Voilą ! I hope I make myself clear.
Thanks in advance.

darodi 2011-12-27 12:12

Re: [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread
 
Sorry if this has been asked before.
Is there an easy way to hide/disable a widget in landscape and show it in portrait mode?
I've noticed 'updOnOrientation' but can someone explain how to use it to hide the widget?
Thanks in advance.

Spotfist 2012-01-09 11:22

Re: [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread
 
Sorry for the lame question have been reading the posts on this thread, seems everyone knows how to use queenbee but I just have no clue :( have read the wiki and it has loads of info explaining what is what but does anyone have a step by step process for creating a beecon from start to finish?

Im sure once I can see a process I can understand the rest but I would have no idea where to put the code nor how to make it work. Maybe just a simple battery icon or something.

Thanks in advance.

sami82 2012-01-11 00:11

Re: [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread
 
hello..

Is there a script that would show artist + song title somehow? To go along with the self-made queen beecon mediaplayer buttons..
tried search but couldn't find anything..

thanks for your help! :cool:

stevomanu 2012-01-11 00:57

Re: [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread
 
maybe this will help you ....

http://talk.maemo.org/showpost.php?p...postcount=2685

or this

http://talk.maemo.org/showpost.php?p...postcount=2686



all it takes is a good searh lol ....


Quote:

Originally Posted by sami82 (Post 1148649)
hello..

Is there a script that would show artist + song title somehow? To go along with the self-made queen beecon mediaplayer buttons..
tried search but couldn't find anything..

thanks for your help! :cool:


sami82 2012-01-11 01:33

Re: [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread
 
Quote:

Originally Posted by stevomanu (Post 1148659)
maybe this will help you ....

http://talk.maemo.org/showpost.php?p...postcount=2685

all it takes is a good searh lol ....

That post tells you how to make media control buttons yes, but i'm looking for a script that would show track title/lenght in a separate beecon.. i have the buttons but the track info-part is what i'm missing :)
thanks anyway for a quick answer!

stevomanu 2012-01-11 12:02

Re: [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread
 
have you tryed media player widget , doesnt that also do what your after ??

Quote:

Originally Posted by sami82 (Post 1148673)
That post tells you how to make media control buttons yes, but i'm looking for a script that would show track title/lenght in a separate beecon.. i have the buttons but the track info-part is what i'm missing :)
thanks anyway for a quick answer!


sami82 2012-01-11 16:24

Re: [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread
 
Quote:

Originally Posted by stevomanu (Post 1148829)
have you tryed media player widget , doesnt that also do what your after ??

Well, it does, sort of.. but.. i'm making this for car use so i rather use bigger (also better looking) media controls.. those i have already made but song title display would've been a nice addition to that...

so i still welcome any help that i can get for this "project". thanks!

Finally got it! Used the widgets from here:
http://talk.maemo.org/showpost.php?p...postcount=3846

:cool:

stevomanu 2012-01-19 15:26

Re: [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread
 
right im trying to make a shortcut to open xterm as root i have managed to do that with this command
Code:

osso-xterm 'sudo gainroot'
but my problem is i cant use the sohortcut again untill i close the open screen , how can i make it open app and then if i need to click it again and it opens another ....

i have try these combos but still cant get it to work

Code:

Exec=/usr/bin/osso-xterm 'sudo gainroot'
Code:

dbus-send --type=method_call --dest=com.nokia.HildonDesktop.AppMgr /com/nokia/HildonDesktop/AppMgr com.nokia.HildonDesktop.AppMgr.LaunchApplication string:'osso-xterm'
second command sort of works but i cant get it to open as root ...
...................


now my other app ik want it to open xterm an run

Code:

osso-xterm -e  "sudo arp-scan --interface=wlan0 --localnet"
which it works but as soon as its run command the windows closes how can i keep it open and free up the shortcut ....

many thanks any other info anybody needs just ask ....

please help i have been throu all the pages in this thread and the wiki page but i cant work it out , im not that great with code to be honest .......

ramshidjafar 2012-01-21 09:03

Re: [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread
 
Hello,

I have made a widget for 'Start Menu' option, i also added an icon but the problem is that when i press the icon the menu opens but there is no considerable animation on the icon (Like Pressed Icon in windows start button). i'm ready to put one more new icon for showing pressed mode but i don't know how to make it possible.


Please Help! :(


Idle Start Menu:
http://findicons.com/files/icons/679...28/start_2.png

Start Menu when Pressed:
http://findicons.com/files/icons/679...28/start_1.png

ramshidjafar 2012-01-21 12:11

Re: [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread
 
Quote:

Originally Posted by ramshidjafar (Post 1153601)
Hello,

I have made a widget for 'Start Menu' option, i also added an icon but the problem is that when i press the icon the menu opens but there is no considerable animation on the icon (Like Pressed Icon in windows start button). i'm ready to put one more new icon for showing pressed mode but i don't know how to make it possible.


Please Help! :(


Idle Start Menu:
http://findicons.com/files/icons/679...28/start_2.png

Start Menu when Pressed:
http://findicons.com/files/icons/679...28/start_1.png


[Solved] myself:

just add an image with '0' at last (eg:- menu0.png) in QBW directory and then type 'menu' in Animation & Progress settings <3

moudy91 2012-01-22 18:51

Re: [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread
 
guys i really need some help.
my power button is down and i cant access it anymore , can i create a qbw command so i can access the power button.
please very very urgent

gkuenning 2012-01-22 23:44

Re: [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread
 
There's a poweroff command available in Linux, so perhaps this would work:

osso-xterm 'sudo poweroff'

But once the power is off, how do plan to turn your phone back on? (Just trying to think ahead here...)

Maybe the 'reboot' command would be a better choice?

JonWW 2012-01-23 00:48

Re: [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread
 
Quote:

Originally Posted by moudy91 (Post 1154089)
guys i really need some help.
my power button is down and i cant access it anymore , can i create a qbw command so i can access the power button.
please very very urgent

Post #2 has your answer, but you will have to run it as root.
http://talk.maemo.org/showthread.php...12#post1118512

EDIT: Before you shutdown your phone and unable to restart it.
Type into XTerm:
Code:

lshal -m
and then briefly press the power button once, you should get a responce.

Also try:
Code:

dbus-monitor --system
and press the power button again.

If you don't get a responce then you mugit have a hardware problem.


All times are GMT. The time now is 11:50.

vBulletin® Version 3.8.8