mirror of
https://git.adityakumar.xyz/betterlockscreen-openrc.git
synced 2024-11-09 10:39:45 +00:00
Merge pull request #278 from pavanjadhaw/fix/missing_dollar_variable
Fix missing dollar for variable in cmd_exists check
This commit is contained in:
commit
9260018996
1 changed files with 1 additions and 1 deletions
|
@ -22,7 +22,7 @@ init_config () {
|
||||||
description=""
|
description=""
|
||||||
i3lockcolor_bin="i3lock-color"
|
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"
|
i3lockcolor_bin="i3lock"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue