You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

notify.js 194B

123456789
  1. var spawn = require("child_process").spawn;
  2. module.exports = function(name, msg) {
  3. var args = ["--urgency", "low"];
  4. args.push(name);
  5. if (msg) args.push(msg);
  6. spawn("notify-send", args);
  7. }