Fix gps location setting bug

This commit is contained in:
Miles Alan 2020-06-28 09:20:45 -05:00
parent 67e9320242
commit 46a8999e0f

View file

@ -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