aboutsummaryrefslogtreecommitdiffstats
path: root/pinentry-rofi.scm
diff options
context:
space:
mode:
authorFredrik Salomonsson <plattfot@gmail.com>2020-05-01 16:15:31 -0700
committerFredrik Salomonsson <plattfot@gmail.com>2020-05-01 16:15:31 -0700
commitbb31f0eb4a88c57c9a6a8b416476881fb7035011 (patch)
tree740d701a99acc4ca13094751fb55874b4a1e0815 /pinentry-rofi.scm
parent23957c71079683daef81e376dedd212e59d1690d (diff)
downloadpinentry-rofi-bb31f0eb4a88c57c9a6a8b416476881fb7035011.tar.gz
Renamed --debug to --log (#4)
Most pinentry tools have an `--debug` option which takes no arguments. So should probably reserve the same for pinentry-rofi.
Diffstat (limited to 'pinentry-rofi.scm')
-rwxr-xr-xpinentry-rofi.scm6
1 files changed, 3 insertions, 3 deletions
diff --git a/pinentry-rofi.scm b/pinentry-rofi.scm
index f7aaf0f..8ce478a 100755
--- a/pinentry-rofi.scm
+++ b/pinentry-rofi.scm
@@ -213,13 +213,13 @@ touch-file=/run/user/1000/gnupg/S.gpg-agent"
'((display (single-char #\d) (value #t))
(xauthority (single-char #\a) (value #t))
(version (single-char #\v) (value #f))
- (debug (value #t))
+ (log (value #t))
(help (single-char #\h) (value #f))))
(default-display ":0")
(options (getopt-long (command-line) option-spec))
(pinentry (make-pinentry #t "Passphrase:" "" #f
(option-ref options 'display default-display)
- (let ((logfile (option-ref options 'debug #f)))
+ (let ((logfile (option-ref options 'log #f)))
(when logfile
(open-output-file
(format #f "~a.~a" logfile (getpid))))))))
@@ -228,7 +228,7 @@ touch-file=/run/user/1000/gnupg/S.gpg-agent"
Usage: ~a [OPTIONS]
Options:
-d, --display DISPLAY Set display, default is ~s.
- --debug LOGFILE Run in debug mode and output log to LOGFILE
+ --log LOGFILE Log unknown commands to LOGFILE
-v, --version Display version.
-h, --help Display this help.
Author: