bin-client/mbin.sh

32 lines
1.0 KiB
Bash
Raw Normal View History

2018-11-16 10:12:06 +01:00
#!/usr/bin/env bash
# Set MKR_BIN if not set. Export it in your shell rc to use a self hosted
# instance. Include the trailing slash with custom urls.
MKR_BIN=${MKR_BIN:-https://bin.mkr.pw/}
2019-05-11 12:41:19 +02:00
HASTEBIN=${HASTEBIN:0}
2018-11-16 10:26:36 +01:00
EDITOR=${EDITOR:-vim}
2018-11-16 10:56:30 +01:00
if [[ $1 == "-c" || $1 == "--clipboard" ]]; then
text=$(xclip -selection clipboard -out)
2019-05-11 12:41:19 +02:00
op=$(curl -s --data-binary "${text}" -H "Content-Type:text/plain" $MKR_BIN$([[ $HASTEBIN == 1 ]] && echo documents))
2018-11-16 10:56:30 +01:00
elif [ -t 0 ]; then
2018-11-16 10:26:36 +01:00
tmp_file=$(mktemp)
$EDITOR $tmp_file
2019-05-11 12:41:19 +02:00
op=$(curl -s --data-binary "@${tmp_file}" -H "Content-Type:text/plain" $MKR_BIN$([[ $HASTEBIN == 1 ]] && echo documents))
2018-11-16 10:26:36 +01:00
rm $tmp_file
else
2019-05-11 12:41:19 +02:00
op=$(curl -s --data-binary "@-" -H "Content-Type:text/plain" $MKR_BIN$([[ $HASTEBIN == 1 ]] && echo documents))
2018-11-16 10:26:36 +01:00
fi
2018-11-16 10:12:06 +01:00
2019-05-11 12:41:19 +02:00
if [[ $HASTEBIN == 1 ]]; then
link=$(echo $op | jq -r .key)
else
link=$(echo $op | cut -f2 -d'/')
fi
if [[ -v DISPLAY ]]; then
echo ${MKR_BIN}${link} | tee /dev/tty | xclip -selection clipboard
xdg-open ${MKR_BIN}${link}
else
echo ${MKR_BIN}${link}
fi