1
0
Fork 0
mirror of https://github.com/notwa/rc synced 2024-07-01 03:07:13 -07:00
rc/sh/scropt

17 lines
351 B
Plaintext
Raw Normal View History

2013-06-28 05:22:14 -07:00
#!/usr/bin/env bash
2021-07-29 00:37:35 -07:00
# YES_ZSH
2015-12-12 06:39:45 -08:00
#SOURCING=$((SOURCING+1))
#. ~/sh/now # FIXME: don't do this?
#SOURCING=$((SOURCING-1))
2015-12-12 06:39:45 -08:00
scropt() {
local now=$(now)
[ $? -eq 0 ] || return $?
2016-03-12 07:04:43 -08:00
local fn="$HOME/play/$now.png"
scrot "$fn" -e "optipng -quiet \$f" "$@"
[ $? -eq 0 ] && echo "$fn" || return $?
2015-12-12 06:39:45 -08:00
}
2021-07-29 00:37:35 -07:00
[ "${SOURCING:-0}" -gt 0 ] || scropt "$@"