This line unconditionally adds some dmenu args, specifically for password input, and there isnt currently a way to disable them
|
const dmenuPswdArgsParsed = ['-p', 'Password:', '-nf', 'black', '-nb', 'black'].concat( |
Bemenu has slightly different arg handling where multi-character arguments are prefixed with a double hyphen instead of single (--nb instead of -nb), and interprets these arguments to mean the flags -n and -b which puts the password prompt always at the bottom of the screen.
A fix would be to simply make these defaults for dmenu-pswd-args, rather than adding them unconditionally
This line unconditionally adds some dmenu args, specifically for password input, and there isnt currently a way to disable them
bitwarden-dmenu/bin/cli.js
Line 80 in 221205e
Bemenu has slightly different arg handling where multi-character arguments are prefixed with a double hyphen instead of single (
--nbinstead of-nb), and interprets these arguments to mean the flags -n and -b which puts the password prompt always at the bottom of the screen.A fix would be to simply make these defaults for dmenu-pswd-args, rather than adding them unconditionally