Created
July 15, 2020 02:09
-
-
Save lukaszlew/f301691687e51cf3e2be54f6ce236d3e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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