Fix gps location setting bug

master
Miles Alan 4 years ago
parent 67e9320242
commit 46a8999e0f
  1. 8
      scripts/core/sxmo_gpsutil.sh

@ -84,10 +84,10 @@ gpslatlonget() {
echo "$LAT" "$LON" "$ZOOM"
}
gpslatlonset() {
CORDS="$(echo "$@" | tr -d ',°')"
LAT="$(echo "$CORDS" | cut -d' ' -f1)"
LON="$(echo "$CORDS" | cut -d' ' -f2)"
ZOOM="$(echo "$CORDS" | cut -d' ' -f3)"
COORDS="$(echo "$@" | tr -d ',°' | awk '{$1=$1};1')"
LAT="$(echo "$COORDS" | cut -d' ' -f1)"
LON="$(echo "$COORDS" | cut -d' ' -f2)"
ZOOM="$(echo "$COORDS" | cut -d' ' -f3)"
[ -z "$ZOOM" ] && ZOOM=10
WINW="$(
xwininfo -id "$(xdotool getactivewindow)" | grep -E '^\s*Width' | cut -d: -f2

Loading…
Cancel
Save