Z3tor
|
2013-10-26
, 13:37
|
Posts: 58 |
Thanked: 19 times |
Joined on Jan 2012
@ Finland
|
#1001
|
|
2013-10-26
, 13:42
|
|
Posts: 645 |
Thanked: 519 times |
Joined on Apr 2012
@ Finland
|
#1002
|
The Following User Says Thank You to Mikkosssss For This Useful Post: | ||
|
2013-10-26
, 14:13
|
|
Community Council |
Posts: 664 |
Thanked: 1,648 times |
Joined on Apr 2012
@ Hamburg
|
#1003
|
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>>}
The Following User Says Thank You to Win7Mac For This Useful Post: | ||
|
2013-10-26
, 15:01
|
Posts: 58 |
Thanked: 19 times |
Joined on Jan 2012
@ Finland
|
#1004
|
$ chmod a+x /home/user/network.sh
|
2013-10-26
, 15:13
|
|
Community Council |
Posts: 664 |
Thanked: 1,648 times |
Joined on Apr 2012
@ Hamburg
|
#1005
|
chmod +x /home/user/network.sh
The Following User Says Thank You to Win7Mac For This Useful Post: | ||
|
2013-10-26
, 15:14
|
|
Posts: 645 |
Thanked: 519 times |
Joined on Apr 2012
@ Finland
|
#1006
|
/home/user/network.sh
The Following User Says Thank You to Mikkosssss For This Useful Post: | ||
|
2013-10-26
, 15:33
|
Posts: 58 |
Thanked: 19 times |
Joined on Jan 2012
@ Finland
|
#1007
|
:not foundnetwork.sh: line 1: ??#! /bin/sh :not foundnetwork.sh: line 2: /home/user/network.sh: line 9: syntax error: unexpected end of file (expecting "fi")
|
2013-10-26
, 15:50
|
|
Posts: 645 |
Thanked: 519 times |
Joined on Apr 2012
@ Finland
|
#1008
|
|
2013-10-26
, 16:03
|
Posts: 58 |
Thanked: 19 times |
Joined on Jan 2012
@ Finland
|
#1009
|
sh: -e: unknown operand
|
2013-10-26
, 16:17
|
Posts: 58 |
Thanked: 19 times |
Joined on Jan 2012
@ Finland
|
#1010
|