From 876b5516cd8e085c6befb6feb1eafefb36c008d6 Mon Sep 17 00:00:00 2001 From: Alexis Hovorka Date: Thu, 18 Mar 2021 12:09:35 -0600 Subject: [fix] Make otp -c less noisy on termux for realsies --- base/otp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/base/otp b/base/otp index d6ef59e..14851cb 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 &>/dev/null + if command termux-clipboard-get; then termux-clipboard-get else xclip -o -selection "$X_SELECTION"; fi } setclip() { [[ -n "$CLIP" ]] || return 0 - if command -v termux-clipboard-set; then termux-clipboard-set &>/dev/null + if command termux-clipboard-set; then termux-clipboard-set else xclip -selection "$X_SELECTION"; fi } -- cgit v1.2.3-54-g00ecf