Compare commits
2 Commits
f903d60922
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
| 556d3bddf3 | |||
| 9436f1213b |
17
mbin.sh
17
mbin.sh
@@ -3,12 +3,20 @@
|
|||||||
# Set MKR_BIN if not set. Export it in your shell rc to use a self hosted
|
# 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.
|
# instance. Include the trailing slash with custom urls.
|
||||||
MKR_BIN=${MKR_BIN:-https://bin.webionite.com/}
|
MKR_BIN=${MKR_BIN:-https://bin.webionite.com/}
|
||||||
HASTEBIN=${HASTEBIN:1}
|
HASTEBIN=${HASTEBIN:-1}
|
||||||
EDITOR=${EDITOR:-vim}
|
EDITOR=${EDITOR:-vim}
|
||||||
URL=$MKR_BIN$([[ $HASTEBIN == 1 ]] && echo documents)
|
URL=$MKR_BIN$([[ $HASTEBIN == 1 ]] && echo documents)
|
||||||
|
|
||||||
|
function getClipboard() {
|
||||||
|
if [[ -v WAYLAND_DISPLAY ]]; then
|
||||||
|
wl-paste
|
||||||
|
elif [[ -v DISPLAY ]]; then
|
||||||
|
xclip -selection clipboard -out
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
if [[ $1 == "-c" || $1 == "--clipboard" ]]; then
|
if [[ $1 == "-c" || $1 == "--clipboard" ]]; then
|
||||||
text=$(xclip -selection clipboard -out)
|
text=$(getClipboard)
|
||||||
op=$(curl -s --data-binary "${text}" -H "Content-Type:text/plain" "$URL")
|
op=$(curl -s --data-binary "${text}" -H "Content-Type:text/plain" "$URL")
|
||||||
elif [[ -f $1 ]]; then
|
elif [[ -f $1 ]]; then
|
||||||
op=$(curl -s --data-binary "@$1" -H "Content-Type:text/plain" "$URL")
|
op=$(curl -s --data-binary "@$1" -H "Content-Type:text/plain" "$URL")
|
||||||
@@ -26,7 +34,10 @@ if [[ $HASTEBIN == 1 ]]; then
|
|||||||
else
|
else
|
||||||
link=$(echo "$op" | cut -f2 -d'/')
|
link=$(echo "$op" | cut -f2 -d'/')
|
||||||
fi
|
fi
|
||||||
if [[ -v DISPLAY ]]; then
|
if [[ -v WAYLAND_DISPLAY ]]; then
|
||||||
|
echo "${MKR_BIN}${link}" | tee /dev/tty | wl-copy
|
||||||
|
xdg-open "${MKR_BIN}${link}"
|
||||||
|
elif [[ -v DISPLAY ]]; then
|
||||||
echo "${MKR_BIN}${link}" | tee /dev/tty | xclip -selection clipboard
|
echo "${MKR_BIN}${link}" | tee /dev/tty | xclip -selection clipboard
|
||||||
xdg-open "${MKR_BIN}${link}"
|
xdg-open "${MKR_BIN}${link}"
|
||||||
else
|
else
|
||||||
|
|||||||
Reference in New Issue
Block a user