14 lines
245 B
Plaintext
14 lines
245 B
Plaintext
|
|
#!/bin/sh
|
||
|
|
|
||
|
|
slop=$(slop -f "%g") || exit 1
|
||
|
|
file="$HOME"/Pictures/screen-"$(date '+%d-%m-%y_%H:%M:%S')".png
|
||
|
|
|
||
|
|
case $1 in
|
||
|
|
"sel")
|
||
|
|
exec import -window root -silent -crop "$slop" "$file"
|
||
|
|
;;
|
||
|
|
*)
|
||
|
|
exec import -window root -silent "$file"
|
||
|
|
;;
|
||
|
|
esac
|