Skip to content

Running in background

Rukario edited this page Feb 21, 2023 · 6 revisions

Location tracking is enabled through /dev/location. Reading from this device will start tracking your location and output a line each time your location updates. It also supports background tracking, so you can get the app to run in the background with the following incantation:

$ cat /dev/location > /dev/null &

And to stop running in background:

$ killall -9 cat
Clone this wiki locally