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

22 lines
502 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
2021-07-30 17:57:08 -07:00
#: $((SOURCING+=1))
#. ~/sh/now # FIXME: don't do this?
2021-07-30 17:57:08 -07:00
#: $((SOURCING-=1))
2021-07-30 17:57:08 -07:00
scropt() { ### @-
### run `scrot` through `optipng` and save the result to `~/play/$(now).png`.
###
### ```
### $ ~/sh/sc $(~/sh/scropt -s -d0.5)
### ```
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 "$@"