Notices


Reply
Thread Tools
Posts: 1,179 | Thanked: 770 times | Joined on Nov 2009
#601
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?
 
No!No!No!Yes!'s Avatar
Posts: 700 | Thanked: 846 times | Joined on Nov 2009
#602
Originally Posted by etuoyo View Post
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?
Could you find again the relevant x-term command?
__________________
Have a look at Queen BeeCon Widget (WIKI) Customizable and flexible widget-based multi-instance monitoring, alerting and interactive tool for the N900
Please provide comments and feedback for having QBW supported and enhanced further - (DONATE) - v1.3.3devel / v1.3.3testing / v1.3.3extras
 
Posts: 208 | Thanked: 220 times | Joined on Apr 2010
#603
I believe you are looking for this
Code:
gconftool -s /apps/osso/hildon-desktop/views/current -t int <Desktop Number>
Where desktop number is an integer value between 1-9. You need to have modified hildon-desktop installed

@No!No!No!Yes!
Is it possible to fix a widget so that it maintains its position across desktop swipes?
Also when do you plan to release the tabs functionality
__________________
With Linux-powered N900..ANYTHING is possible
 

The Following User Says Thank You to techie For This Useful Post:
No!No!No!Yes!'s Avatar
Posts: 700 | Thanked: 846 times | Joined on Nov 2009
#604
Originally Posted by techie View Post
@No!No!No!Yes!
Is it possible to fix a widget so that it maintains its position across desktop swipes
Not to my knowledge

Originally Posted by techie View Post
Also when do you plan to release the tabs functionality
It's already there

I'll post a premature version of Tabbed MLBeecon for study purposes within hours ...
__________________
Have a look at Queen BeeCon Widget (WIKI) Customizable and flexible widget-based multi-instance monitoring, alerting and interactive tool for the N900
Please provide comments and feedback for having QBW supported and enhanced further - (DONATE) - v1.3.3devel / v1.3.3testing / v1.3.3extras
 

The Following User Says Thank You to No!No!No!Yes! For This Useful Post:
Posts: 67 | Thanked: 24 times | Joined on Dec 2009 @ Helsinki Finland
#605
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?
 

The Following User Says Thank You to oneFinn For This Useful Post:
Posts: 561 | Thanked: 75 times | Joined on Jan 2010 @ Spain
#606
This application I discovered recently ... but it's one of my indispensable.

Struggling to learn to use scripts with her.

Thank you for developing it.
 

The Following User Says Thank You to WhiteWolf For This Useful Post:
No!No!No!Yes!'s Avatar
Posts: 700 | Thanked: 846 times | Joined on Nov 2009
#607
Study about tabbed Beecon posted here:
__________________
Have a look at Queen BeeCon Widget (WIKI) Customizable and flexible widget-based multi-instance monitoring, alerting and interactive tool for the N900
Please provide comments and feedback for having QBW supported and enhanced further - (DONATE) - v1.3.3devel / v1.3.3testing / v1.3.3extras
 

The Following User Says Thank You to No!No!No!Yes! For This Useful Post:
No!No!No!Yes!'s Avatar
Posts: 700 | Thanked: 846 times | Joined on Nov 2009
#608
Originally Posted by oneFinn View Post
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?
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

very naively I'd suggest ...
create 2 nice [ON] and [OFF] buttons .png images
make it a beecon
in settings set off_image.png for =0 status
in settings set on_image.png for =1 status
handle 1st run (touch file or the like)
Code:
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}
}
if you can be notified via DBUS signal about sleep/active status change then you can use DBUS monitor in QBW
__________________
Have a look at Queen BeeCon Widget (WIKI) Customizable and flexible widget-based multi-instance monitoring, alerting and interactive tool for the N900
Please provide comments and feedback for having QBW supported and enhanced further - (DONATE) - v1.3.3devel / v1.3.3testing / v1.3.3extras
 
Posts: 67 | Thanked: 24 times | Joined on Dec 2009 @ Helsinki Finland
#609
Originally Posted by No!No!No!Yes! View Post
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
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.
 

The Following User Says Thank You to oneFinn For This Useful Post:
No!No!No!Yes!'s Avatar
Posts: 700 | Thanked: 846 times | Joined on Nov 2009
#610
Originally Posted by oneFinn View Post
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.
Set Update @Startup and @Click policy
If you don't need results text just make it "hidden", echo final status like ON or OFF in your command and at every click check for previous status with $QBW_CURRENT_RESULTS_TEXT variable

This is metacode by heart; must be tweaked a bit:
Code:
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
}
__________________
Have a look at Queen BeeCon Widget (WIKI) Customizable and flexible widget-based multi-instance monitoring, alerting and interactive tool for the N900
Please provide comments and feedback for having QBW supported and enhanced further - (DONATE) - v1.3.3devel / v1.3.3testing / v1.3.3extras
 
Reply

Thread Tools

 
Forum Jump


All times are GMT. The time now is 03:45.