[libnotify] notify-send: Add ability to set app name
- From: Jasper St. Pierre <jstpierre src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [libnotify] notify-send: Add ability to set app name
- Date: Thu, 13 Oct 2011 18:17:56 +0000 (UTC)
commit b873c61ecc85c1a87c9471046f3d25ecd2446959
Author: Jasper St. Pierre <jstpierre mecheye net>
Date: Wed Oct 12 17:31:05 2011 -0400
notify-send: Add ability to set app name
tools/notify-send.c | 4 ++++
1 files changed, 4 insertions(+), 0 deletions(-)
---
diff --git a/tools/notify-send.c b/tools/notify-send.c
index 8dec70f..c0b9eeb 100644
--- a/tools/notify-send.c
+++ b/tools/notify-send.c
@@ -125,6 +125,7 @@ main (int argc, char *argv[])
static const char *summary = NULL;
char *body;
static const char *type = NULL;
+ static char *app_name = NULL;
static char *icon_str = NULL;
static char *icons = NULL;
static char **n_text = NULL;
@@ -146,6 +147,8 @@ main (int argc, char *argv[])
N_
("Specifies the timeout in milliseconds at which to expire the "
"notification."), N_("TIME")},
+ {"app-name", 'a', 0, G_OPTION_ARG_STRING, &app_name,
+ N_("Specifies the app name for the icon"), N_("APP_NAME")},
{"icon", 'i', 0, G_OPTION_ARG_FILENAME, &icons,
N_("Specifies an icon filename or stock icon to display."),
N_("ICON[,ICON...]")},
@@ -226,6 +229,7 @@ main (int argc, char *argv[])
notify_notification_set_category (notify, type);
notify_notification_set_urgency (notify, urgency);
notify_notification_set_timeout (notify, expire_timeout);
+ notify_notification_set_app_name (notify, app_name);
g_free (body);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]