diff --git a/geoclue/beacondb.conf b/geoclue/beacondb.conf new file mode 100644 index 0000000..d950346 --- /dev/null +++ b/geoclue/beacondb.conf @@ -0,0 +1,3 @@ +[wifi] +enable=true +url=https://api.beacondb.net/v1/geolocate?key=geoclue_elementaryos diff --git a/geoclue/meson.build b/geoclue/meson.build new file mode 100644 index 0000000..d14dc46 --- /dev/null +++ b/geoclue/meson.build @@ -0,0 +1,5 @@ +install_data( + 'beacondb.conf', + rename: '99-beacondb.conf', + install_dir: sysconfdir / 'geoclue' / 'conf.d' +) diff --git a/meson.build b/meson.build index 7c214a9..5914db5 100644 --- a/meson.build +++ b/meson.build @@ -47,5 +47,8 @@ subdir('accountsservice') # System skeleton subdir('skel') +# Geolocation settings +subdir('geoclue') + # GTK settings subdir('gtk')