1.0.0 • Published 8 years ago

lockscreen v1.0.0

Weekly downloads
4
License
MIT
Repository
github
Last release
8 years ago

Lockscreen

Lock screen of your pc

Build Status devDependency Status

Install

$ npm install --save lockscreen

Usage

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

Support

Currently it supports macOS (tested on El Capitan v10.11.5) Create a new issue if your OS is not supported

Contribute

# Clone Repo
$ git clone git@github.com:michaelzoidl/lockscreen.git

# Install dependencies
$ npm install

# Test
$ npm test

# Watch the tests
$ npm test -- -w

License

MIT (c) Michael Zoidl