mirror of
https://git.adityakumar.xyz/betterlockscreen-openrc.git
synced 2024-11-08 18:29:45 +00:00
Fix missing dollar for variable in cmd_exists check (thanks to @hrhino for pointing out)
This commit is contained in:
parent
c3fcd2d6f7
commit
46dc2ae6c4
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue