diff options
author | 2tefan <2tefan@tuta.io> | 2023-12-06 22:35:17 +0100 |
---|---|---|
committer | 2tefan <2tefan@tuta.io> | 2023-12-06 22:35:17 +0100 |
commit | 00380aa1ffeffbae82ba74dcb2aaee2147d40ec8 (patch) | |
tree | 94ef7fdaaede694ce76cb6d83c46be6d68656845 | |
parent | 96f0ce5ccc8fdf43c3762103ce6a2379448050ed (diff) | |
download | pinentry-rofi-00380aa1ffeffbae82ba74dcb2aaee2147d40ec8.tar.gz |
Add `-no-fixed-num-lines` as arg to rofi
-rwxr-xr-x | pinentry-rofi.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pinentry-rofi.scm b/pinentry-rofi.scm index 4114eb3..179d437 100755 --- a/pinentry-rofi.scm +++ b/pinentry-rofi.scm @@ -316,7 +316,7 @@ Return the input from the user if succeeded else #f." (rofi-sh `("env" ,(string-join (map (lambda (x) (format #f "~a=~s" (car x) (cdr x))) env)) - ,(format #f "rofi -dmenu -disable-history -l ~a -i" + ,(format #f "rofi -dmenu -disable-history -no-fixed-num-lines -l ~a -i" (if (list? buttons) (length buttons) 1)) ,(if (and only-match buttons) "-only-match" "") ,(if (not buttons) "-input /dev/null" "") |