From e48f3540314f289a8373168234ea4ccd508691d4 Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Sat, 30 Nov 2019 11:41:28 +0000 Subject: [PATCH] pash: raise default timeout to 15 --- README.md | 6 +++--- pash | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index cd6b654..c98c350 100644 --- a/README.md +++ b/README.md @@ -67,7 +67,7 @@ Password length: export PASH_LENGTH=50 Password pattern: export PASH_PATTERN=_A-Z-a-z-0-9 Store location: export PASH_DIR=~/.local/share/pash Clipboard tool: export PASH_CLIP='xclip -sel c' -Clipboard timeout: export PASH_TIMEOUT=10 ('off' to disable) +Clipboard timeout: export PASH_TIMEOUT=15 ('off' to disable) ``` ## FAQ @@ -143,8 +143,8 @@ PASH_CLIP='xclip -sel c' pash copy github Set the environment variable `PASH_TIMEOUT` to a valid `sleep` interval or `off` to disable the feature. ```sh -# Default: '10' -export PASH_TIMEOUT=10 +# Default: '15' +export PASH_TIMEOUT=15 # Disable timeout. export PASH_TIMEOUT=off diff --git a/pash b/pash index 0ba0ba1..80a7e03 100755 --- a/pash +++ b/pash @@ -67,7 +67,7 @@ pw_copy() { # simplest method of aborting from a subshell. [ "$PASH_TIMEOUT" != off ] && { printf 'Clearing clipboard in "%s" seconds.\n' \ - "${PASH_TIMEOUT:=10}" + "${PASH_TIMEOUT:=15}" sleep "$PASH_TIMEOUT" || kill 0 $PASH_CLIP