gnu: i3lock-fancy: Fix defunct substitution.
* gnu/packages/wm.scm (i3lock-fancy)[arguments]: Fix faulty regular expression.
This commit is contained in:
parent
1aa765fd52
commit
184598a43c
1 changed files with 1 additions and 1 deletions
|
@ -611,7 +611,7 @@ Features include:
|
||||||
"/bin/gawk")))
|
"/bin/gawk")))
|
||||||
|
|
||||||
(substitute* "lock"
|
(substitute* "lock"
|
||||||
(("$(which wmctrl)") wmctrl)
|
(("\\$\\(command -V wmctrl\\)") wmctrl)
|
||||||
(("convert") mconvert)
|
(("convert") mconvert)
|
||||||
(("shot=\\(import") (string-append "shot=\(" mimport))
|
(("shot=\\(import") (string-append "shot=\(" mimport))
|
||||||
(("awk -F") (string-append awk " -F"))
|
(("awk -F") (string-append awk " -F"))
|
||||||
|
|
Reference in a new issue