qinglong/shell/notify.js

6 lines
159 B
JavaScript

const notify = require('../scripts/sendNotify');
const title = process.argv[2];
const content = process.argv[3];
notify.sendNotify(`${title}`, `${content}`);