Merge pull request #278 from pavanjadhaw/fix/missing_dollar_variable

Fix missing dollar for variable in cmd_exists check
This commit is contained in:
Basti 2021-08-10 22:26:54 +02:00 committed by GitHub
commit 9260018996
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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