TheMathemagicians/scanner/test_scanner_loop

13 lines
372 B
Plaintext
Raw Normal View History

2024-11-24 17:47:43 +00:00
#!/bin/bash
STORAGE_DIR="$HOME/.local/share/sevenkeys/testimages/"
mkdir -p "$STORAGE_DIR"
echo "test_card_scanner_count: Beginning test"
while true; do
rng="$(cat /dev/random | tr -cd 'a-f0-9' | head -c 32)"
filename="$STORAGE_DIR/$rng.png"
scanimage --output-file="$filename" --source "ADF Front" --mode Color --page-width 63mm --page-height 88mm 2>/dev/null
done