summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Möller <jan.moeller0@gmail.com>2023-03-30 10:25:27 +0200
committerGitHub <noreply@github.com>2023-03-30 13:55:27 +0530
commitd45e9b165ce48d0655a4f4b5cab8beef65eae38a (patch)
tree2c37104742778cc556d54c27235a34789edbc1d8
parent32b8804a03679896feb0e99351093d19cf23c4f6 (diff)
fix: revert rename of pass_backend config key
This fixes the issue https://github.com/ayushnix/tessen/issues/38
-rwxr-xr-xtessen2
1 files changed, 1 insertions, 1 deletions
diff --git a/tessen b/tessen
index 05fe494..c890613 100755
--- 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