Skip to content

Commit

Permalink
Merge pull request #25 from fgnass/master
Browse files Browse the repository at this point in the history
prevent notifications from piling up in Gnome
  • Loading branch information
tj committed Oct 22, 2012
2 parents f36139e + f7d592c commit 488e9bf
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions lib/growl.js
Expand Up @@ -165,6 +165,8 @@ function growl(msg, options, fn) {
break;
case 'Linux':
args.push(cmd.icon + " " + image);
// libnotify defaults to sticky, set a hint for transient notifications
if (!options.sticky) args.push('--hint=int:transient:1');
break;
case 'Windows':
args.push(cmd.icon + quote(image));
Expand Down

0 comments on commit 488e9bf

Please sign in to comment.