summaryrefslogtreecommitdiff
path: root/doc/dwb.1
diff options
context:
space:
mode:
authorportix <none@none>2012-04-12 01:25:23 +0200
committerportix <none@none>2012-04-12 01:25:23 +0200
commiteff86b5a94eaeb28ae62f47984837ee7ba9e061e (patch)
tree54af26e0c6d75b48aab5db748e2de40de364d829 /doc/dwb.1
parentbbe650005de9674db09adfe043f649193168108f (diff)
downloaddwb-eff86b5a94eaeb28ae62f47984837ee7ba9e061e.zip
Parse commands only from DWB_FIFO not stdout in userscripts
Diffstat (limited to 'doc/dwb.1')
-rw-r--r--doc/dwb.14
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/dwb.1 b/doc/dwb.1
index 7809c0bb..45ac92fd 100644
--- a/doc/dwb.1
+++ b/doc/dwb.1
@@ -2061,7 +2061,7 @@ are set.
The keybinding for
the script must be defined in the script itself in a commented line of the form
.B <comment symbols> dwb: <keybinding>.
-Commands can be executed by sending the command to stdout.
+Commands can be executed by sending the command to ${DWB_FIFO}.
.SS Examples
The following script will download the actual webpage:
@@ -2080,7 +2080,7 @@ Popup an alert dialog:
#!/bin/bash
# dwb: Control h
- echo "execute_javascript:window.alert('Hello world');"
+ echo "execute_javascript:window.alert('Hello world');" > ${DWB_FIFO}
.fi