Can show 3G, Dual, 2G instead of UMTS or GSM?
qdbus --system com.nokia.csd.CSNet /com/nokia/csd/csnet com.nokia.csd.CSNet.RadioAccess.SelectionMode
I'm also thinking about a modified script, something like this Code: #!/bin/sh mode=$(develsh -c "qdbus --system com.nokia.csd.CSNet /com/nokia/csd/csnet com.nokia.csd.CSNet.RadioAccess.Technology") if [[ $mode -e GSM ]] then print "{{yellow}}2G" fi if [[ $mode -e UMTS ]] then print "{{yellow}}3G" fi Please correct to make it work.
#!/bin/sh mode=$(develsh -c "qdbus --system com.nokia.csd.CSNet /com/nokia/csd/csnet com.nokia.csd.CSNet.RadioAccess.Technology") if [[ $mode -e GSM ]] then print "{{yellow}}2G" fi if [[ $mode -e UMTS ]] then print "{{yellow}}3G" fi
#!/bin/sh tech=$(qdbus --system com.nokia.csd.CSNet /com/nokia/csd/csnet com.nokia.csd.CSNet.RadioAccess.Technology) gsm='<</usr/share/themes/blanco/meegotouch/icons/icon-s-status-gsm.png>>' umts='<</usr/share/themes/blanco/meegotouch/icons/icon-s-status-3g.png>>' if [ $tech == "GSM" ] then echo -n $gsm fi if [ $tech == "UMTS" ] then echo -n $umts fi
#!/bin/sh DT=$(qdbus --system com.nokia.csd.CSNet /com/nokia/csd/csnet com.nokia.csd.CSNet.RadioAccess.DataTechnology) NT=$(qdbus --system com.nokia.icd2.context /org/maemo/contextkit/Internet/NetworkType org.maemo.contextkit.Property.Get | sed q) wlan='<</usr/share/themes/blanco/meegotouch/icons/icon-s-status-wlan.png>>' umts='<</usr/share/themes/blanco/meegotouch/icons/icon-s-status-3g.png>>' egprs='<</usr/share/themes/blanco/meegotouch/icons/icon-s-status-25g.png>>' gprs='<</usr/share/themes/blanco/meegotouch/icons/icon-s-status-gsm.png>>' hspa='<</usr/share/themes/blanco/meegotouch/icons/icon-s-status-35g.png>>' if [ $NT == "WLAN" ] then echo -n $wlan else if [ $DT == "GPRS" ] then echo -n $gprs else if [ $DT == "EGPRS" ] then echo -n $egprs else if [ $DT == "UMTS" ] then echo -n $umts else if [ $DT == "HSPA" ] then echo -n $hspa fi fi fi fi fi
Also, I noticed that {cell-network} doesn't work.