commit d45e9b165ce48d0655a4f4b5cab8beef65eae38a
parent 32b8804a03679896feb0e99351093d19cf23c4f6
Author: Jan Möller <jan.moeller0@gmail.com>
Date: Thu, 30 Mar 2023 10:25:27 +0200
fix: revert rename of pass_backend config key
This fixes the issue https://github.com/ayushnix/tessen/issues/38
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tessen b/tessen
@@ -640,7 +640,7 @@ parse_config() {
# here comes the ladder
# the -p, -d, and -a options will be parsed and set only if they're not
# already set, i.e., from the argparse
- if [[ $key == "_PASS_BACKEND" ]] && [[ -z $_PASS_BACKEND ]]; then
+ if [[ $key == "pass_backend" ]] && [[ -z $_PASS_BACKEND ]]; then
validate_pass_backend "$val"
readonly _PASS_BACKEND
elif [[ $key == "dmenu_backend" ]] && [[ -z $_DMENU_BACKEND ]]; then