diff options
author | Jon Lund Steffensen <jonlst@gmail.com> | 2015-01-02 22:26:44 -0500 |
---|---|---|
committer | Jon Lund Steffensen <jonlst@gmail.com> | 2015-01-02 22:42:16 -0500 |
commit | f7dd7addd86aec7e56ef6e4af3e514b3030ac823 (patch) | |
tree | f973459f2b3566e50a03e0a2e5a5cc2f7bb36624 /src/location-geoclue2.c | |
parent | Update po files (diff) | |
download | redshift-ng-f7dd7addd86aec7e56ef6e4af3e514b3030ac823.tar.gz redshift-ng-f7dd7addd86aec7e56ef6e4af3e514b3030ac823.tar.bz2 redshift-ng-f7dd7addd86aec7e56ef6e4af3e514b3030ac823.tar.xz |
Fix #153: geoclue2: Set desktop id on GeoClue2 client
This property needs to be set in the latest versions of GeoClue2,
but it is not available in early versions.
Diffstat (limited to 'src/location-geoclue2.c')
-rw-r--r-- | src/location-geoclue2.c | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/src/location-geoclue2.c b/src/location-geoclue2.c index 9b9b725..b559196 100644 --- a/src/location-geoclue2.c +++ b/src/location-geoclue2.c @@ -196,13 +196,30 @@ on_name_appeared(GDBusConnection *conn, const gchar *name, g_variant_unref(client_path_v); - /* Set distance threshold */ + /* Set desktop id (basename of the .desktop file) */ error = NULL; GVariant *ret_v = g_dbus_proxy_call_sync(geoclue_client, "org.freedesktop.DBus.Properties.Set", g_variant_new("(ssv)", "org.freedesktop.GeoClue2.Client", + "DesktopId", + g_variant_new("s", "redshift")), + G_DBUS_CALL_FLAGS_NONE, + -1, NULL, &error); + if (ret_v == NULL) { + /* Ignore this error for now. The property is not available + in early versions of GeoClue2. */ + } else { + g_variant_unref(ret_v); + } + + /* Set distance threshold */ + error = NULL; + ret_v = g_dbus_proxy_call_sync(geoclue_client, + "org.freedesktop.DBus.Properties.Set", + g_variant_new("(ssv)", + "org.freedesktop.GeoClue2.Client", "DistanceThreshold", g_variant_new("u", 50000)), G_DBUS_CALL_FLAGS_NONE, |