mirror of
https://github.com/notwa/rc
synced 2024-11-05 08:19:03 -08:00
16 lines
351 B
Bash
Executable file
16 lines
351 B
Bash
Executable file
#!/usr/bin/env bash
|
|
# YES_ZSH
|
|
|
|
#SOURCING=$((SOURCING+1))
|
|
#. ~/sh/now # FIXME: don't do this?
|
|
#SOURCING=$((SOURCING-1))
|
|
|
|
scropt() {
|
|
local now=$(now)
|
|
[ $? -eq 0 ] || return $?
|
|
local fn="$HOME/play/$now.png"
|
|
scrot "$fn" -e "optipng -quiet \$f" "$@"
|
|
[ $? -eq 0 ] && echo "$fn" || return $?
|
|
}
|
|
|
|
[ "${SOURCING:-0}" -gt 0 ] || scropt "$@"
|