gpshelper/gpshelper.sh

13 lines
158 B
Bash
Raw Normal View History

#!/bin/bash
# Enable nmea mode
mmcli -m any --location-enable-gps-nmea
# Show the status of gps
while true; do
mmcli -m any --location-get
sleep 1
done