diff options
author | Basti <mail@sebastian-sellmeier.de> | 2021-08-10 22:26:54 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-10 22:26:54 +0200 |
commit | 926001899648edfc2d5b069dda26bf81505585a4 (patch) | |
tree | 7990fadc005a374cd76143a49f9d0500ab318c92 | |
parent | a315d2ea24cb0eae573ee7e8a36be071286dff56 (diff) | |
parent | 46dc2ae6c4e0ca65cb6e2567e178d112ff1248ec (diff) |
Merge pull request #278 from pavanjadhaw/fix/missing_dollar_variable
Fix missing dollar for variable in cmd_exists check
-rwxr-xr-x | betterlockscreen | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/betterlockscreen b/betterlockscreen index c0f3768..50fba3d 100755 --- a/betterlockscreen +++ b/betterlockscreen @@ -22,7 +22,7 @@ init_config () { description="" i3lockcolor_bin="i3lock-color" - if ! cmd_exists "i3lockcolor_bin" && cmd_exists "i3lock"; then + if ! cmd_exists "$i3lockcolor_bin" && cmd_exists "i3lock"; then i3lockcolor_bin="i3lock" fi |