Packages
A web application in pursuit of meaning in life.
Current section
Files
Jump to
Current section
Files
assets/node_modules/native-notifier/windows/index.js
'use strict';
const sh = require('tag-shell');
const notify = `${__dirname}/notify.ps1`;
module.exports = opts => {
sh.async`powershell -file ${notify}
-app ${opts.app} -icon ${opts.icon}
-title ${opts.title} -message ${opts.message}
`;
};