From 46dc2ae6c4e0ca65cb6e2567e178d112ff1248ec Mon Sep 17 00:00:00 2001 From: Sebastian Sellmeier Date: Tue, 10 Aug 2021 22:25:31 +0200 Subject: [PATCH] Fix missing dollar for variable in cmd_exists check (thanks to @hrhino for pointing out) --- betterlockscreen | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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