Last active
October 10, 2021 13:22
-
-
Save sakkke/a5452209878e05faf3603bd7be56e508 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/bash | |
set -e | |
screenshots_dir="$HOME/Pictures/screenshots" | |
[ ! -d "$screenshots_dir" ] && mkdir -vp "$screenshots_dir" | |
crop="$(crop)" | |
screenshot_path="$screenshots_dir/screenshot-$(date +%s).jpg" | |
import -window root -crop "$crop" "$screenshot_path" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment