#! /usr/bin/env python3import pyautoguiimport timewhile True:pyautogui.moveRel(0, 50, duration=1.5)time.sleep(1)pyautogui.moveRel(0, -50, duration=1.5)time.sleep(1)pyautogui.moveRel(50, 0, duration=1.5)time.sleep(1)pyautogui.moveRel(-50, 0, duration=1.5)time.sleep(1)# You can remove a bunch of the repetition above. I just like seeing the mouse move a lot to know it's working.
// Menu: Mouse Mover// Description: Moves your mouse so you don't go inactive in Slack or Microsoft Teams// Author: Benjamin Modayil// Twitter: @24propsawait exec(`/PATH-TO-PYTHON-EXECUTABLE/python3.9 /PATH-TO-SCRIPT/i-am-here.py`)