![]() |
Re: [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread
bump cause not matter what i try nothing is changeing and its doing my head in , come were are you scripting gods ¬¬
http://talk.maemo.org/showpost.php?p...postcount=1315 |
Re: [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread
Couldn't find anything in a search on this.
I'm looking for a status bar app or widget to hide my number when I make calls to clients (I'm a psychotherapist and they can be quite demanding). |
Re: [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread
David,
Does *82 not work? Or is it *83? That works on landlines; I don't know if it works on cellphone plans (and I can't test right now because I'd wake up my wife by calling my house!). Have you tried your cell provider's customer service line? Ask them "How do I disable caller ID for a single call?" |
Re: [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread
Quote:
edit found http://talk.maemo.org/showthread.php...=caller+widget |
Re: [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread
dear all,
i want to create a qbw on my desktop that access me to enter the iwlist scan through the xterm iwconfig wlan0 up iwlist wlan0 scan iwconfig wlan0 downn how can i do that ? |
Re: [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread
Quote:
|
Re: [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread
Quote:
Code:
osso-xterm 'root' |
Re: [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread
Hi, im trying find solution for this in long time, but no luck. So my problem is that i want widget that will show missed phone calls and unread sms in number and will change number to 0 when i will check em. Hope so that will get help here, thanks
|
Re: [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread
hi guys i did create this command as sh
Code:
#!/bin/shbut with a qbw command it don't Code:
/usr/bin/osso-xterm/ /location of sh/ ?.sh |
Re: [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread
Quote:
Code:
osso-xterm -e /path/to/yourscriptHTH & HAND Michael |
Re: [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread
Quote:
Nothing happens even the xterm did not open at all. |
Re: [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread
try your command from the commandline (xterm launched from desktop) first- if this works then try it from the widget cmd-field.
CU Michael |
Re: [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread
Quote:
In xterm its working just fine but in the qbw nothing happens, must be something missing in the script |
Re: [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread
Don't you need to chmod the script?
|
Re: [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread
Quote:
o s s o - x t e r m ' r o o t ' ' e c h o " i f c o n f i g w l a n 0 u p " ' ' e c h o " i w l i s t w l a n 0 s c a n " ' ' e c h o " i f c o n f i g w l a n 0 d o w n ' " |
Re: [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread
Quote:
what do you mean about chmod ??? first time i use in my n900 because usual just i use sh /location/ ?.sh then it works , but dont know why this time its only works in xterm but dont work in qbw |
Re: [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread
i tried this
Code:
osso-xterm -e sh /path/to/yourscriptPS: in xterm the sh works perfectly |
Re: [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread
I thought it may not run because it wasn't set executable.
I had a go at recreating your problem, seems like QBW forces the script to close. The script as you say works great on it's own. As a work around you could dump a huge pause in the script. I can't seem to get it to leave xterm open when executed. Or you could try and see if you can make a .desktop execute it correctly. At the moment I have this 30 second pause, a prompt, a 10 second pause. When running in QBW the "Press Enter" prompt gets skipped. QBW Command Code:
osso-xterm -e "sh /home/user/MyDocs/myscript/iwlistscan.sh" | echo ""Code:
#!/bin/sh |
Re: [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread
Quote:
Ohhh yes thanks , it worked finally, really thank you. i have a question can the iwlist scan give me just the SSID and mac ?? because the other info that iwlist scan give me not important for me , all i care about is SSID and mac |
Re: [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread
Why not just use
QBW Command Code:
echo "iwconfig wlan0" | sudo gainroot | grep ESSID |sed "s/.*ESSID:\"//;s/\".*//" ; echo "iwconfig wlan0" | sudo gainroot | grep Point | sed "s/.*Point: //;s/ //g"You will not need the script or xterm then. If you want to display anything else from iwlist just add another grep command. |
Re: [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread
Quote:
yes i know that script, but i need the iwlist scan command will give me the result JUST for SSID and MAC and Channel and quality , the other information like encryption key and other info i dont need them, can i grep just these info to my script ??? |
Re: [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread
I currently have this on my desktop.
Code:
/sbin/ifconfig wlan0 | awk -F "[: ]" ' /Bc/ {print $13}' ; echo "iwconfig wlan0" | sudo gainroot | grep ESSID | sed "s/.*ESSID:\"//;s/\".*//"; awk -F "[. ]" '/0/ {print $6" %"}' /proc/net/wireless ; echo "/sbin/iwconfig wlan0" | sudo gainroot | grep Point | sed "s/.*Point: //;s/ //g" ;
As for channel, "iwconfig wlan0" doesn't show a channel so I am not sure. Will have a go later. Possibly try "iwlist scan" | grep channel |
Re: [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread
Quote:
what am trying to get when i click on the iwlistscan.sh ( you did created for me ) it will opens xterm and a lot of info, all i need when i click this iwlistscan.sh will show me only the SSID, mac, channel, quality. |
Re: [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread
Hi, I made first attempt for releasing qb-widgets easily.
I started new thread for dedicated discussion: http://talk.maemo.org/showthread.php?p=1178433 It describes how I managed to package qb-widget inside debian package and pushed it to the extras-devel. |
Re: [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread
hey guys the qbw is giving me this error when i want to ussdquery.py *220#
QBW Warning! Possible Pango Markup Language inconsistent/unterminated Tag! that's because the result of ussdquery.py contains the (&) character, how can this be fixed ?? i saw it in http://wiki.maemo.org/Queen_BeeCon_W...minated_Tag.21 how can i fix it please. |
Re: [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread
Quote:
PHP Code:
|
Re: [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread
Quote:
|
Re: [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread
Quote:
|
Re: [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread
Hi there. I just started to play around with this programm, and i really think its awesome... though it lacks a little bit of tutorials imho. Nevertheless, i managed to do my own CPU Overclocking script with 2-state-icon...
buuuut: How can i change the "working" animation (the little bee with the heart)? When I want to access "/home/user/.queen_beecon" it says: "cant cd to...." the same if i try as root. There is a folder, called ".queen_beecon_dir" but its empty. And secondly: Can anyone give me a tutorial or a hint, on how to make 2 QBW visible (change state from hidden to show) on click on another QBW... I quite dont get it how to edit their parameters... thanks alot! |
Re: [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread
Hello, where I can see practical examples to make the most of Queen BeeCon Widget. Please demos.
thanks. |
Re: [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread
Hey guys did anyone manage to create a WP7 tiles desktop? Is there any guide or something? Thanks.
|
Re: [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread
Quote:
If you want to see some working examples you could always check out the Show off your maemo5 desktops. This has many screenies of various peoples work and many links to shared widgets. It's not really a how-to thread mind :) You may also want to take a look in to the QBW Scripts for noobs thread which also contains many scripts and walk throughs for applying exsisting widgets. And not forgetting, this very thread contains a large number of screens, scripts, the wiki and discussion for more indepth widget development. Then of course the Themes and Design boards will also have various personal widget projects littered through them. :) |
Re: [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread
help me for show news about soccer and matchs of euro 2012. thank you
|
Re: [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread
Quote:
http://talk.maemo.org/showpost.php?p=571270&postcount=1 :) |
Re: [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread
|
Re: [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread
Quote:
http://talk.maemo.org/showpost.php?p...&postcount=164 |
Re: [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread
Quote:
|
Re: [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread
i want some commands plz help here. i want to open applications below i listed from queen beecon widget plz give me commands.
1) phone 2) contacts 3) conversation 4) Open media player 5) Photos 6) microb and opera mini 7) km player 8) qcpufreq 9) fast application manager 10) Camera 11) Email 12) Filebox and File manager 13) X terminal 14) Cleven |
Re: [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread
Code:
run-standalone.sh dbus-send --type=method_call --dest=com.nokia.HildonDesktop.AppMgr /com/nokia/HildonDesktop/AppMgr com.nokia.HildonDesktop.AppMgr.LaunchApplication string:"YOUR APPLICATION HERE" |
Re: [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread
thank u very very very very much
|
| All times are GMT. The time now is 11:50. |
vBulletin® Version 3.8.8