A small Windows utility that listens for the Print Screen key and saves a full virtual-desktop screenshot as a PNG file.
Screenshots are saved to:
%USERPROFILE%\Pictures\PrintScreenCapture
cargo build --releasecargo run --releaseWhile it is running:
- Press
Print Screento save a screenshot. - Press
Ctrl+Cin the terminal to quit.
To capture once and exit:
cargo run --release -- --capture-onceTo check whether the Print Screen global hotkey is available:
cargo run --release -- --check-hotkey- This is Windows-only.
- If another app already owns the
Print Screenglobal hotkey, startup will fail with a Windows error.