14 lines
247 B
Plaintext
Raw Permalink Normal View History

2020-06-20 21:19:03 +02:00
#!/bin/sh
file="$HOME"/Pictures/screen-"$(date '+%d-%m-%y_%H:%M:%S')".png
case $1 in
"sel")
2020-12-26 13:06:57 +01:00
slop=$(slop -f "%g") || exit 1
2020-06-20 21:19:03 +02:00
exec import -window root -silent -crop "$slop" "$file"
;;
*)
exec import -window root -silent "$file"
;;
esac