A very simple application to send computer statistics (CPU, RAM, keyboard presses, etc.) to my API
Find a file
dependabot[bot] 6ab8b16c3b
chore(deps): bump openssl from 0.10.66 to 0.10.71
Bumps [openssl](https://github.com/sfackler/rust-openssl) from 0.10.66 to 0.10.71.
- [Release notes](https://github.com/sfackler/rust-openssl/releases)
- [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.66...openssl-v0.10.71)

---
updated-dependencies:
- dependency-name: openssl
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-03-22 15:21:09 +00:00
src fix: set notification timeout to 60s 2025-03-22 15:20:18 +00:00
.env.example fix: add native-tls feature to tungstenite 2025-03-22 15:19:36 +00:00
.gitignore feat: add dotenvy 2024-11-29 15:00:21 +00:00
Cargo.lock chore(deps): bump openssl from 0.10.66 to 0.10.71 2025-03-22 15:21:09 +00:00
Cargo.toml fix: add native-tls feature to tungstenite 2025-03-22 15:19:36 +00:00
LICENSE docs: add LICENSE 2024-11-29 15:39:46 +00:00
README.md docs: running without sudo section 2025-03-22 15:19:52 +00:00

computer

Sends statistics of my computer to my API that can be seen on my website

features

  • CPU usage
  • Memory usage
  • Key press counter
  • Left and right mouse clicks counter

running without sudo

$ sudo nano /etc/udev/rules.d/99-inputbot.rules

Copy and paste this below and save the file.

KERNEL=="event*", SUBSYSTEM=="input", TAG+="uaccess"
KERNEL=="mouse*", SUBSYSTEM=="input", TAG+="uaccess"
KERNEL=="kbd*", SUBSYSTEM=="input", TAG+="uaccess"

Restart your computer.