|
2010-09-14
, 16:57
|
|
Posts: 700 |
Thanked: 846 times |
Joined on Nov 2009
|
#602
|
I am using modified hildon home with ability to have up to 9 screens. I read somewhere on this site that there is the possibility of an xterm command which jumps to the screen you want and then that can be changed into a queen beecon script. So you can just place queen beecon widgets on your desktops, press a widget and it takes you to the desktop screen tied to that widget script/command.
Is this possible or is it fantasy only? If possible would someone be a superstar and create the relevant beecons?
|
2010-09-14
, 17:42
|
Posts: 208 |
Thanked: 220 times |
Joined on Apr 2010
|
#603
|
gconftool -s /apps/osso/hildon-desktop/views/current -t int <Desktop Number>
With Linux-powered N900..ANYTHING is possible
The Following User Says Thank You to techie For This Useful Post: | ||
|
2010-09-14
, 17:52
|
|
Posts: 700 |
Thanked: 846 times |
Joined on Nov 2009
|
#604
|
@No!No!No!Yes!
Is it possible to fix a widget so that it maintains its position across desktop swipes
The Following User Says Thank You to No!No!No!Yes! For This Useful Post: | ||
|
2010-09-14
, 18:04
|
Posts: 67 |
Thanked: 24 times |
Joined on Dec 2009
@ Helsinki Finland
|
#605
|
The Following User Says Thank You to oneFinn For This Useful Post: | ||
|
2010-09-14
, 19:23
|
Posts: 561 |
Thanked: 75 times |
Joined on Jan 2010
@ Spain
|
#606
|
The Following User Says Thank You to WhiteWolf For This Useful Post: | ||
|
2010-09-14
, 20:48
|
|
Posts: 700 |
Thanked: 846 times |
Joined on Nov 2009
|
#607
|
The Following User Says Thank You to No!No!No!Yes! For This Useful Post: | ||
|
2010-09-14
, 21:36
|
|
Posts: 700 |
Thanked: 846 times |
Joined on Nov 2009
|
#608
|
First,
thanks 3xNo!Yes! for Queen BeeCon, very useful app.
I'm using it to to put N900 to sleep with one widget and back alive with another.
I browsed around BeeCon Wiki etc. but could not find info how to make this into one widget; a toggle-type that would change the state between sleep and all active. Is that possible with Queen BeeCon?
if (clicked) { test active condition if (on) { switch off; exit 0 } else {switch on, exit 1 } } else { if (dbus_signal_off) {exit 0} else {exit 1} }
|
2010-09-15
, 19:53
|
Posts: 67 |
Thanked: 24 times |
Joined on Dec 2009
@ Helsinki Finland
|
#609
|
it depends ...
what do you use to send it to sleep and to activate?
Issue here can be:
- widget startup after power on (which state is initial?)
- other conditions which change phone status without any signal (widget cannot realize real-time about status change)
- way to test sleep/active condition
The Following User Says Thank You to oneFinn For This Useful Post: | ||
|
2010-09-15
, 20:17
|
|
Posts: 700 |
Thanked: 846 times |
Joined on Nov 2009
|
#610
|
Hi, I'm using the hardsleep from your examples and made another widget that changes phoneback to 3G, waits few seconds and creates the connection etc.
Initial state after boot would be "normal" i.e. 3g mode etc.
No conditions needed, manual toggle is enough
If widget remembers it's current state, it enough.
I'll test your suggestion..looks what I'm looking for.
if "$QBW_EXEC_REASON" == "QBW_STARTUP_UPDATE" { switch on, echo "ON"; exit 1 } if "$QBW_CURRENT_RESULTS_TEXT" == "ON" { switch off; echo "OFF"; exit 0 } else { switch on, echo "ON"; exit 1 }
Is this possible or is it fantasy only? If possible would someone be a superstar and create the relevant beecons?