Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/607011/simactivity
Simulate user activity by moving the mouse pointer back and forth a bit whenever the user has been idle for a specified amount of time.
https://github.com/607011/simactivity
activity cheat cplusplus homeoffice linux linux-shell macos simulator tweak windows windows-11
Last synced: about 4 hours ago
JSON representation
Simulate user activity by moving the mouse pointer back and forth a bit whenever the user has been idle for a specified amount of time.
- Host: GitHub
- URL: https://github.com/607011/simactivity
- Owner: 607011
- License: mit
- Created: 2022-12-12T15:09:34.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-02-09T05:38:55.000Z (9 months ago)
- Last Synced: 2024-02-09T15:55:10.010Z (9 months ago)
- Topics: activity, cheat, cplusplus, homeoffice, linux, linux-shell, macos, simulator, tweak, windows, windows-11
- Language: C
- Homepage:
- Size: 19.5 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# simactivity
Simulate user activity by moving the mouse pointer back and forth a bit whenever the user has been idle for a specified amount of time.
Successfully tested with
- macOS (macOS 10.12 (Sierra) and later required)
- [x] macOS Sonoma 14.3 (Apple silicon)
- Linux (X11)
- [x] Kali Linux in UTM VM
- Windows
- [x] Windows 11## Build
### Prerequisites
#### macOS
- [Command Line Tools for Xcode](https://developer.apple.com/download/all/)
- [CMake](https://cmake.org/)
#### Windows- [Build Tools for Visual Studio](https://learn.microsoft.com/en-us/cpp/build/building-on-the-command-line)
- Git and [CMake](https://cmake.org/):
```
winget install Git.Git
winget install Kitware.CMake
```#### Linux
- [CMake](https://cmake.org/)
- C++ compiler, e.g. g++
- X11 libs### Compile
#### macOS / Linux
```
git clone https://github.com/607011/simactivity.git
cd simactivity
mkdir -p build && cd build
cmake -DCMAKE_BUILD_TYPE=Release ..
cmake --build .
```#### Windows
Open Visual Studio Developer Console.
```
git clone https://github.com/607011/simactivity.git
cd simactivity
md build
cd build
cmake ..
cmake --build . --config Release
```## Run
### macOS / Linux
```
./iamhere
```### Windows
```
iamhere.exe
```