Socket
Socket
Sign inDemoInstall

working-hardly

Package Overview
Dependencies
94
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 2.0.0 to 3.0.0

6

cli.js

@@ -25,4 +25,4 @@ #!/usr/bin/env node

.option('-f, --f15instead', 'Hit F15 instead of moving the mouse')
.option('-k, --key [value]', 'Provide a keep awake key.')
.option('-f, --force', 'do not skip movement if the mouse has changed position between last runs..')
.option('-k, --key [value]', 'Provide a keep awake key')
.option('-n, --noskip', 'do not skip movement if the mouse has changed position between last runs')
.option('-r, --run', 'Run immediately')

@@ -64,3 +64,3 @@ .parse(process.argv);

// Do not move mouse if its moved recently
if(!program.force) {
if(!program.noskip) {
if(lastKnownPosition.x !== currentPosition.x ||

@@ -67,0 +67,0 @@ lastKnownPosition.y !== currentPosition.y) {

{
"name": "working-hardly",
"version": "2.0.0",
"version": "3.0.0",
"description": "Moves your mouse every N seconds.",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -20,7 +20,8 @@ # Working (Hardly)

-V, --version output the version number
-i, --interval [value] How many seconds between mouse movements [240] (default: 14400)
-i, --interval [value] How many seconds between mouse movements [240] (default: 240)
-f, --f15instead Hit F15 instead of moving the mouse
-k, --key [value] Provide a keep awake key.
-k, --key [value] Provide a keep awake key
-n, --noskip do not skip movement if the mouse has changed position between last runs
-r, --run Run immediately
-h, --help output usage information
```
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc