diff options
author | Sebastian Sellmeier <mail@sebastian-sellmeier.de> | 2021-08-10 22:25:31 +0200 |
---|---|---|
committer | Sebastian Sellmeier <mail@sebastian-sellmeier.de> | 2021-08-10 22:25:31 +0200 |
commit | 46dc2ae6c4e0ca65cb6e2567e178d112ff1248ec (patch) | |
tree | 7990fadc005a374cd76143a49f9d0500ab318c92 /betterlockscreen | |
parent | c3fcd2d6f77c83d94660ad56d39aae20e2b66c59 (diff) |
Fix missing dollar for variable in cmd_exists check (thanks to @hrhino for pointing out)
Diffstat (limited to 'betterlockscreen')
-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 |