10
ttshivhula
249d

🚀 Stay Active with @ttshivhula/stay-online!

Tired of auto screen locks or your system assuming you're idle? Look no further:

• Simulate Mouse Movement (either linear or circular)
• Simulate Keyboard Activity
• Set Random Activity Intervals
• Pick your mode: mouse, keyboard, or both!

💡 Quick Start:
Install with: `npm install -g @ttshivhula/stay-online`

🤝 Contribute & Collaborate:
Have improvements or ideas? We'd love your input! Dive in and contribute. Visit our GitHub repo: `https://github.com/ttshivhula/...`

Let's redefine 'active' together! Spread the word and keep your system awake.🚀🖥️🔒🚫

Comments
  • 5
    Nice project!

    Just a quick comment for the lazy like me, apparently you can also place your mouse over an analog watch and the motion of the watch keep the computer awake :-)
  • 0
    @benj hahaha that's a nice hack I will try 😁
  • 2
    Could you not just... turn the auto screen lock off?
  • 4
    Sounds wonderful. I'm so tired of coming back from a 45 minute shit to management being all "showing offline?"
  • 4
    Yep, there's a 13 line python script that can do this:

    import pyautogui

    import time

    # while true, move the mouse in a clockwise fashion

    while True:

    pyautogui.move(0, -50)

    time.sleep(1)

    pyautogui.move(50, 0)

    time.sleep(1)

    pyautogui.move(0, 50)

    time.sleep(1)

    pyautogui.move(-50, 0)

    time.sleep(1)

    Meanwhile the rest of the neanderthal world will shell out $20+ for "mouse jigglers" on amazon (I shit you not, they are real, go look at them 😂)
  • 4
    @fullstackcircus props to however came up with that though. They saw an opportunity and didn't waste it lol
  • 2
    @fullstackcircus Why would anyone use a 13 line script when you could install an npm package with a gazillion of dependencies instead?
  • 0
    @TheBeardedOne wait... do they seriously message you this? you need to run in the opposite direction, and very fast
  • 0
    I built the same with a 5 line PS script. Don’t over-complicate it!
  • 0
    +++
Add Comment