commit 89e0637e06b32e831b1bd21649ef1ff7e9376660 parent 44659ea57b5af13bf2b634efb2006600499b5da2 Author: Ayush Agarwal <ayush@fastmail.in> Date: Mon, 20 Sep 2021 04:03:18 +0530 don't panic if libnotify isn't installed Diffstat:
| M | tessen | | | 6 | +++--- |
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/tessen b/tessen @@ -158,17 +158,17 @@ auto_type() { wld_copy() { if [[ "${1-}" == "username" ]]; then printf '%s' "$USERNAME" | wl-copy - notify-send -t $((CLIP_TIME * 1000)) "Copied username to clipboard. Will clear in $CLIP_TIME seconds." + notify-send -t $((CLIP_TIME * 1000)) "Copied username to clipboard. Will clear in $CLIP_TIME seconds." || true shift clean elif [[ "${1-}" == "password" ]]; then printf '%s' "$PASSWORD" | wl-copy - notify-send -t $((CLIP_TIME * 1000)) "Copied password to clipboard. Will clear in $CLIP_TIME seconds." + notify-send -t $((CLIP_TIME * 1000)) "Copied password to clipboard. Will clear in $CLIP_TIME seconds." || true shift clean elif [[ -n "${PASSDATA_ARR[${1-}]}" ]]; then printf '%s' "${PASSDATA_ARR[${1-}]}" | wl-copy - notify-send -t $((CLIP_TIME * 1000)) "Copied ${1-} to clipboard. Will clear in $CLIP_TIME seconds." + notify-send -t $((CLIP_TIME * 1000)) "Copied ${1-} to clipboard. Will clear in $CLIP_TIME seconds." || true shift clean else