From b873c61ecc85c1a87c9471046f3d25ecd2446959 Mon Sep 17 00:00:00 2001 From: "Jasper St. Pierre" Date: Wed, 12 Oct 2011 17:31:05 -0400 Subject: notify-send: Add ability to set app name --- tools/notify-send.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'tools') 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); -- cgit v1.2.1