Skip to content

Commit

Permalink
Add raw_icon and timeout to notification printout
Browse files Browse the repository at this point in the history
  • Loading branch information
tsipinakis committed Jan 28, 2017
1 parent 1e735c6 commit a3cce0e
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/notification.c
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,9 @@ void notification_print(notification * n)
printf("\tsummary: '%s'\n", n->summary);
printf("\tbody: '%s'\n", n->body);
printf("\ticon: '%s'\n", n->icon);
printf("\traw_icon set: %s\n", (n->raw_icon ? "true" : "false"));
printf("\tcategory: %s\n", n->category);
printf("\ttimeout: %d\n", n->timeout);
printf("\turgency: %d\n", n->urgency);
printf("\tformatted: '%s'\n", n->msg);
printf("\tfg: %s\n", n->color_strings[ColFG]);
Expand Down

0 comments on commit a3cce0e

Please sign in to comment.