Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cauen/auto-screenshot
A 1MB binary to create a tray that can start/stop a auto screen shotter to take a fullscreen of every screen at every 60 seconds. Every file are stored at a folder with current date.
https://github.com/cauen/auto-screenshot
linux rust screen screenshot utility windows
Last synced: about 2 months ago
JSON representation
A 1MB binary to create a tray that can start/stop a auto screen shotter to take a fullscreen of every screen at every 60 seconds. Every file are stored at a folder with current date.
- Host: GitHub
- URL: https://github.com/cauen/auto-screenshot
- Owner: Cauen
- Created: 2023-12-05T21:41:02.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2024-04-21T01:45:03.000Z (9 months ago)
- Last Synced: 2024-10-12T10:11:06.698Z (3 months ago)
- Topics: linux, rust, screen, screenshot, utility, windows
- Language: Rust
- Homepage:
- Size: 88.9 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
![image](https://github.com/Cauen/auto-screenshot/assets/8796757/90485fa1-cb7f-4652-8a9f-c1f959f87b96)
# Rust Auto Screen Shotter
A 1MB binary to create a tray that can start/stop a auto screen shotter to take a fullscreen of every screen at every 60 seconds.
Every file are stored at a folder with current date.```
📦
└ 📜 auto-screen-shotter.exe
└ 📂 images
├ 📂 2024-04-01
│ ├ 📜 2024-04-01_11-57-53.png
│ └ 📜 2024-04-01_11-58-53.png
│ └ 📜 ...
├ 📂 ...
```## Release
cargo build --release## Release windows without console
cargo rustc --release -- -Clink-args="/SUBSYSTEM:WINDOWS /ENTRY:mainCRTStartup"## Dev
cargo run