diff options
author | Jan Möller <jan.moeller0@gmail.com> | 2023-03-30 10:25:27 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-30 13:55:27 +0530 |
commit | d45e9b165ce48d0655a4f4b5cab8beef65eae38a (patch) | |
tree | 2c37104742778cc556d54c27235a34789edbc1d8 | |
parent | 32b8804a03679896feb0e99351093d19cf23c4f6 (diff) |
fix: revert rename of pass_backend config key
This fixes the issue https://github.com/ayushnix/tessen/issues/38
-rwxr-xr-x | tessen | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |