Lock screen of your pc
$ npm install --save lockscreen
import lockscreen from 'lockscreen';
// just lock the screen
lockscreen();
// callback, good to catch errors - maybe you need the stdout - so the callback also passes this
lockscreen((err, stdout) => {
if(err) {
console.log('there was some error', err);
}
});
// custom command for custom OS
lockscreen(() => {}, {
myCoolOS: 'the command which will be executed when "process.platform" is "myCoolOS"'
})
Checkout the Wiki if you want to use lockscreen
with ES5
Currently it supports:
- macOS (tested on El Capitan v10.11.5)
- win32 (thx @michael8090)
- linux (gnome / kde) (thx @michael8090)
Create a new issue if your OS is not supported
# Clone Repo
$ git clone [email protected]:michaelzoidl/lockscreen.git
# Install dependencies
$ npm install
# Test
$ npm test
# Watch the tests
$ npm test -- -w
MIT (c) Michael Zoidl