From 4555557e5315e8df25b039ce03caa63dbc50518a Mon Sep 17 00:00:00 2001 From: Sandor Semsey Date: Mon, 20 Oct 2025 15:40:47 +0200 Subject: [PATCH 1/2] bin/pass-man: pass extra options to pass open and close also --- bin/pass-man | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/bin/pass-man b/bin/pass-man index 0d34989..6019bca 100755 --- a/bin/pass-man +++ b/bin/pass-man @@ -21,7 +21,7 @@ timer=6h _usage() { cat < Date: Mon, 20 Oct 2025 15:50:39 +0200 Subject: [PATCH 2/2] bin/pass-man: don't set -f and --time=6h on pass open by default --- bin/pass-man | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/bin/pass-man b/bin/pass-man index 6019bca..5a30894 100755 --- a/bin/pass-man +++ b/bin/pass-man @@ -6,12 +6,6 @@ ## which is inside a tomb. ## ##################################### -############ -## CONFIG ## -############ -# Timer to close tomb automatically -timer=6h - ############### ## FUNCTIONS ## ############### @@ -47,7 +41,7 @@ _check-tomb-open() { _vault-open() { # shellcheck disable=SC2310 if ! _check-tomb-open; then - pass open -f --timer="${timer}" "${@}" + pass open "${@}" if ! _check-tomb-open; then error-exit "Failed to open tomb."