aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexis Hovorka <[email protected]>2021-01-06 12:36:16 -0700
committerAlexis Hovorka <[email protected]>2021-01-06 12:36:16 -0700
commitb9fa49fead00fbfd2854f1ecd2e2db461712e729 (patch)
treeb26977a9d13089ca7740e78f3b5d976dd5683d52
parent535603b8d82e349a010b2f5532198a04d8b9f14a (diff)
[fix] Make termux clipboard not so noisy
-rwxr-xr-xbase/otp4
1 files changed, 2 insertions, 2 deletions
diff --git a/base/otp b/base/otp
index 5bd835a..d6ef59e 100755
--- a/base/otp
+++ b/base/otp
@@ -40,13 +40,13 @@ X_SELECTION="${PASSWORD_STORE_X_SELECTION:-clipboard}"
getclip() {
[[ -n "$CLIP" ]] || return 0
- if command -v termux-clipboard-get; then termux-clipboard-get
+ if command -v termux-clipboard-get; then termux-clipboard-get &>/dev/null
else xclip -o -selection "$X_SELECTION"; fi
}
setclip() {
[[ -n "$CLIP" ]] || return 0
- if command -v termux-clipboard-set; then termux-clipboard-set
+ if command -v termux-clipboard-set; then termux-clipboard-set &>/dev/null
else xclip -selection "$X_SELECTION"; fi
}