aboutsummaryrefslogtreecommitdiff
path: root/base/otp
diff options
context:
space:
mode:
Diffstat (limited to 'base/otp')
-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
}