Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 704 Bytes

readme.md

File metadata and controls

26 lines (20 loc) · 704 Bytes

image

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.

📦 <project root>
└ 📜 auto-screen-shotter.exe <binary>
└ 📂 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