aboutsummaryrefslogtreecommitdiff
path: root/src/notifier.c
diff options
context:
space:
mode:
authorMike Gabriel <mike.gabriel@das-netzwerkteam.de>2018-03-12 14:03:05 +0100
committerMike Gabriel <mike.gabriel@das-netzwerkteam.de>2018-03-12 18:33:03 +0100
commit4d9589837e532df1015f7579439703c0af0164ca (patch)
tree0c13f4e4aaff871cd67967b8178ee7c37f6bbf85 /src/notifier.c
parentaff888fa666cf2c1598d80f1f032cd2d6b9d5a1c (diff)
downloadayatana-indicator-power-4d9589837e532df1015f7579439703c0af0164ca.tar.gz
ayatana-indicator-power-4d9589837e532df1015f7579439703c0af0164ca.tar.bz2
ayatana-indicator-power-4d9589837e532df1015f7579439703c0af0164ca.zip
Revert "Drop unnecessary dependency on Ubuntu's url-dispatcher."
This reverts commit 0a9cc2a474ff583c928e109468f20330aae0603c.
Diffstat (limited to 'src/notifier.c')
-rw-r--r--src/notifier.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/notifier.c b/src/notifier.c
index 5601825..f51032e 100644
--- a/src/notifier.c
+++ b/src/notifier.c
@@ -21,6 +21,8 @@
#include "dbus-shared.h"
#include "notifier.h"
+#include <url-dispatcher.h>
+
#include <libnotify/notify.h>
#include <glib/gi18n.h>
@@ -166,6 +168,14 @@ notification_clear (IndicatorPowerNotifier * self)
}
static void
+on_battery_settings_clicked(NotifyNotification * nn G_GNUC_UNUSED,
+ char * action G_GNUC_UNUSED,
+ gpointer user_data G_GNUC_UNUSED)
+{
+ url_dispatch_send("settings:///system/battery", NULL, NULL);
+}
+
+static void
on_dismiss_clicked(NotifyNotification * nn G_GNUC_UNUSED,
char * action G_GNUC_UNUSED,
gpointer user_data G_GNUC_UNUSED)
@@ -240,6 +250,7 @@ notification_show(IndicatorPowerNotifier * self)
notify_notification_set_hint(nn, "x-canonical-snap-decisions-timeout", g_variant_new_int32(INT32_MAX));
notify_notification_set_timeout(nn, NOTIFY_EXPIRES_NEVER);
notify_notification_add_action(nn, "dismiss", _("OK"), on_dismiss_clicked, NULL, NULL);
+ notify_notification_add_action(nn, "settings", _("Battery settings"), on_battery_settings_clicked, NULL, NULL);
}
/* if we can show it, keep it */