diff options
author | June McEnroe <programble@gmail.com> | 2018-04-03 12:54:48 -0400 |
---|---|---|
committer | June McEnroe <programble@gmail.com> | 2018-04-03 12:54:48 -0400 |
commit | e9834a80ca32c65c8341558ce73c46ff5319e628 (patch) | |
tree | c82533852a3b00658cdb8813422abdc0c70bff5c /home/.local/bin/sup | |
parent | Highlight Special as Normal (diff) | |
download | src-e9834a80ca32c65c8341558ce73c46ff5319e628.tar.gz src-e9834a80ca32c65c8341558ce73c46ff5319e628.zip |
Move home bins to ~/.local/bin
Also replaced ~/.cargo/bin with a symlink to ~/.local/bin to avoid having to have that in $path as well.
Diffstat (limited to 'home/.local/bin/sup')
-rwxr-xr-x | home/.local/bin/sup | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/home/.local/bin/sup b/home/.local/bin/sup new file mode 100755 index 00000000..22f2b85e --- /dev/null +++ b/home/.local/bin/sup @@ -0,0 +1,8 @@ +#!/usr/bin/env zsh +set -o errexit -o nounset -o pipefail + +dir=$(mktemp -d) +screencapture -i "$dir/capture.png" +pngo "$dir/capture.png" +up "$dir/capture.png" +rm -r "$dir" |