gpshelper/gpshelper.sh

12 lines
158 B
Bash
Executable file

#!/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