A signal strength logo or bar would be great. Even better, a status line similar to the status bar at the top of the home screen would be even better.
I actually thought of another wish (fairly important). A flight mode indicator.
#!/bin/sh percent=$(qdbus --system com.nokia.csd /com/nokia/csd/csnet com.nokia.csd.CSNet.SignalStrength.SignalPercent) tech=$(develsh -c "qdbus --system com.nokia.csd.CSNet /com/nokia/csd/csnet com.nokia.csd.CSNet.RadioAccess.Technology") if [[ $percent -ge 15 && $tech == "GSM" ]] then echo -n "{{yellow}}$percent % {{=$(($percent/100)).$((($percent%100)/10))$(($percent%10))}} <</usr/share/themes/blanco/meegotouch/icons/icon-s-status-gsm-yellow2.png>>" else if [[ $percent -le 14 && $tech == "GSM" ]] then echo -n "{{red}}$percent % {{=$(($percent/100)).$((($percent%100)/10))$(($percent%10))}} <</usr/share/themes/blanco/meegotouch/icons/icon-s-status-gsm-red.png>>" fi fi if [[ $percent -ge 15 && $tech == "UMTS" ]] then echo -n "{{yellow}}$percent % {{=$(($percent/100)).$((($percent%100)/10))$(($percent%10))}} <</usr/share/themes/blanco/meegotouch/icons/icon-s-status-3g-yellow.png>>" else if [[ $percent -le 14 && $tech == "UMTS" ]] then echo -n "{{red}}$percent % {{=$(($percent/100)).$((($percent%100)/10))$(($percent%10))}} <</usr/share/themes/blanco/meegotouch/icons/icon-s-status-3g-red.png>>" fi fi
{cell-signal-strength?{script: home/user/signal.sh}}{{red}}{cell-signal-strength!Flightmode on <</usr/share/themes/blanco/meegotouch/icons/icon-s-status-flight-mode-red.png>>}