summary refs log tree commit diff
path: root/home/.bin
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2018-04-03 12:54:48 -0400
committerJune McEnroe <june@causal.agency>2018-04-03 12:54:48 -0400
commitfb18fcfaa9be09dffd473b8bd1c44cdb886db1a5 (patch)
tree16a65480c4f15f8a1d432a5d0c498cb6c5915faf /home/.bin
parentHighlight Special as Normal (diff)
downloadsrc-fb18fcfaa9be09dffd473b8bd1c44cdb886db1a5.tar.gz
src-fb18fcfaa9be09dffd473b8bd1c44cdb886db1a5.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/.bin')
-rwxr-xr-xhome/.bin/sup8
-rwxr-xr-xhome/.bin/tup7
-rwxr-xr-xhome/.bin/up12
3 files changed, 0 insertions, 27 deletions
diff --git a/home/.bin/sup b/home/.bin/sup
deleted file mode 100755
index 22f2b85e..00000000
--- a/home/.bin/sup
+++ /dev/null
@@ -1,8 +0,0 @@
-#!/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"
diff --git a/home/.bin/tup b/home/.bin/tup
deleted file mode 100755
index 29af9b0a..00000000
--- a/home/.bin/tup
+++ /dev/null
@@ -1,7 +0,0 @@
-#!/usr/bin/env zsh
-set -o errexit -o nounset -o pipefail
-
-dir=$(mktemp -d)
-cat > "$dir/input.txt"
-up "$dir/input.txt"
-rm -r "$dir"
diff --git a/home/.bin/up b/home/.bin/up
deleted file mode 100755
index 43b1929b..00000000
--- a/home/.bin/up
+++ /dev/null
@@ -1,12 +0,0 @@
-#!/usr/bin/env zsh
-set -o errexit -o nounset -o pipefail
-
-ts=$(date +%s)
-rand=$(openssl rand -hex 4)
-ext=${1##*.}
-url=$(printf 'temp.causal.agency/%x%s.%s' "$ts" "$rand" "$ext")
-
-scp -q "$1" "temp.causal.agency:/usr/local/www/$url"
-
-echo "https://$url"
-type pbcopy > /dev/null && echo -n "https://$url" | pbcopy