diff options
| author | June McEnroe <june@causal.agency> | 2017-07-25 22:10:32 -0400 |
|---|---|---|
| committer | June McEnroe <june@causal.agency> | 2017-07-25 22:10:32 -0400 |
| commit | d3aa30927d962a2e8550c5979bce6b3bdb6dda2d (patch) | |
| tree | 0afd62542d8f2c01926e380977fa1bd7dff5f7a2 /home/.bin/sup | |
| parent | Autopickup rings (diff) | |
| download | src-d3aa30927d962a2e8550c5979bce6b3bdb6dda2d.tar.gz src-d3aa30927d962a2e8550c5979bce6b3bdb6dda2d.zip | |
Add up, sup
Diffstat (limited to '')
| -rwxr-xr-x | home/.bin/sup | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/home/.bin/sup b/home/.bin/sup new file mode 100755 index 00000000..7a69d9d0 --- /dev/null +++ b/home/.bin/sup @@ -0,0 +1,7 @@ +#!/usr/bin/env zsh +set -o errexit -o nounset -o pipefail + +dir=$(mktemp -d) +screencapture -i "$dir/capture.png" +up "$dir/capture.png" +rm -r "$dir" |