From c3518f946f0a8c38d44aa103157df744fa9f37c4 Mon Sep 17 00:00:00 2001 From: "C. McEnroe" Date: Mon, 8 Feb 2021 17:23:03 -0500 Subject: Use xsel in up and add it do install.sh --- bin/up.sh | 10 +++++++++- install.sh | 2 +- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/bin/up.sh b/bin/up.sh index f55213d4..9cb77a2b 100644 --- a/bin/up.sh +++ b/bin/up.sh @@ -62,6 +62,14 @@ uploadTerminal() { upload "${temp}/term.html" } +copy() { + if type xsel >/dev/null; then + xsel -bi + else + pbcopy + fi +} + while getopts 'chst' opt; do case "$opt" in (c) fn=uploadCommand;; @@ -76,5 +84,5 @@ shift $((OPTIND - 1)) : ${fn:=upload} url=$($fn "$@") -printf '%s' "$url" | pbcopy || true +printf '%s' "$url" | copy || true echo "$url" diff --git a/install.sh b/install.sh index e05ea760..cc80e226 100644 --- a/install.sh +++ b/install.sh @@ -17,7 +17,7 @@ FreeBSD() { OpenBSD() { doas pkg_add $packages - test $X && doas pkg_add imv scrot xcursor-dmz + test $X && doas pkg_add imv scrot xcursor-dmz xsel } Linux() { -- cgit 1.4.1