notify-send: Add ability to set app name

This commit is contained in:
Jasper St. Pierre 2011-10-12 17:31:05 -04:00
parent 6a63ae0e8a
commit b873c61ecc
1 changed files with 4 additions and 0 deletions

View File

@ -125,6 +125,7 @@ main (int argc, char *argv[])
static const char *summary = NULL; static const char *summary = NULL;
char *body; char *body;
static const char *type = NULL; static const char *type = NULL;
static char *app_name = NULL;
static char *icon_str = NULL; static char *icon_str = NULL;
static char *icons = NULL; static char *icons = NULL;
static char **n_text = NULL; static char **n_text = NULL;
@ -146,6 +147,8 @@ main (int argc, char *argv[])
N_ N_
("Specifies the timeout in milliseconds at which to expire the " ("Specifies the timeout in milliseconds at which to expire the "
"notification."), N_("TIME")}, "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, {"icon", 'i', 0, G_OPTION_ARG_FILENAME, &icons,
N_("Specifies an icon filename or stock icon to display."), N_("Specifies an icon filename or stock icon to display."),
N_("ICON[,ICON...]")}, N_("ICON[,ICON...]")},
@ -226,6 +229,7 @@ main (int argc, char *argv[])
notify_notification_set_category (notify, type); notify_notification_set_category (notify, type);
notify_notification_set_urgency (notify, urgency); notify_notification_set_urgency (notify, urgency);
notify_notification_set_timeout (notify, expire_timeout); notify_notification_set_timeout (notify, expire_timeout);
notify_notification_set_app_name (notify, app_name);
g_free (body); g_free (body);