mirror of
https://github.com/notwa/rc
synced 2024-11-05 06:29:02 -08:00
10 lines
261 B
Bash
Executable file
10 lines
261 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
scropt() {
|
|
local now=
|
|
which ~/sh/now 2>/dev/null >/dev/null && now=$(~/sh/now) || now=$(date +%F_%T)
|
|
echo $now
|
|
scrot ~/$now.png -e "optipng -quiet \$f" "$@" \
|
|
&& mv ~/$now.png ~/Dropbox/Public/screenshots/
|
|
}
|
|
scropt "$@"
|