blob: f0d0fff0220a63cb331a44a9436894a0c7babcce (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
#!/bin/sh
printusage() { echo "Usage: $(basename "$0") [-cx]\n\nOPTIONS:\n -c\tInteractively crop screenshot\n -x\tCopy screenshot to clipboard with xclip rather than saving it" && exit; }
# Scrot and xclip opts
fmt=$(date '+%m-%d-%4Y_%I:%M:%S_%p.png')
tmppath=/tmp/$fmt
savpath=~/pics/screenshots/$fmt
normopt=''
cropopt='--select --freeze'
normexp='echo $f'
xclipexp='xclip -selection clipboard -target image/png -i $f && echo $f'
# Notify-send opts
notifyopts="--expire-time 4000 --urgency low"
normsumm="Screenshot Saved!"
xclipsumm="Screenshot Copied!"
normbody="Screenshot saved as \"$fmt\""
xclipbody="Screenshot copied to clipboard"
# Default opts
opt=$normopt
path=$savpath
exp=$normexp
summ=$normsumm
body=$normbody
while getopts "cxh" arg; do
case "$arg" in
c) opt=$cropopt ;;
x) path=$tmppath; exp=$xclipexp; summ=$xclipsumm; body=$xclipbody ;;
h) printusage ;;
*) printusage ;;
esac
done
scrot $opt $path --exec "$exp" \
&& notify-send $notifyopts -i $path "$summ" "$body" \
|| notify-send $notifyopts "Screenshot Failed!"
|