Skip to content

Instantly share code, notes, and snippets.

@lukaszlew
Created July 15, 2020 02:09
Show Gist options
  • Save lukaszlew/f301691687e51cf3e2be54f6ce236d3e to your computer and use it in GitHub Desktop.
Save lukaszlew/f301691687e51cf3e2be54f6ce236d3e to your computer and use it in GitHub Desktop.
#!/bin/sh
# find unused filename
i=999
for i in $(seq 999 -1 100); do
new_file="${HOME}/go/problem-$i.png"
if [[ -e $new_file ]]; then
break
fi
file=$new_file
done
echo "eog $file"
# Make a screenshot from appropriate browser window
import -window "$(xdotool search --name ZBaduk)" -crop 730x730+105+225 +repage $file
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment