sites

public wiki contents of suckless.org
git clone git://git.suckless.org/sites
Log | Files | Refs

commit 83457733a101da51a9fac8b321d5664d3810275a
parent 1f277d7b0ed0a06b3ae2f24f7dab9075dc94605f
Author: Emanuele Torre <torreemanuele6@gmail.com>
Date:   Fri, 28 May 2021 09:22:53 +0200

tools.suckless.org: quote another command substitution that needs quoting :)

Diffstat:
Mtools.suckless.org/dmenu/patches/non_blocking_stdin/index.md | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools.suckless.org/dmenu/patches/non_blocking_stdin/index.md b/tools.suckless.org/dmenu/patches/non_blocking_stdin/index.md @@ -35,7 +35,7 @@ Supported Control Characters: Example: # Make a fifo and read from it for dmenu's input mkfifo foo - while true; do cat foo; done | dmenu -w $(xdotool getactivewindow) -l 10 + while true; do cat foo; done | dmenu -w "$(xdotool getactivewindow)" -l 10 # And then separately, load a first set of options: printf %b "\ffoo\nbar\nbill" > foo