diff options
author | portix <none@none> | 2012-04-12 01:25:23 +0200 |
---|---|---|
committer | portix <none@none> | 2012-04-12 01:25:23 +0200 |
commit | eff86b5a94eaeb28ae62f47984837ee7ba9e061e (patch) | |
tree | 54af26e0c6d75b48aab5db748e2de40de364d829 /doc/dwb.1 | |
parent | bbe650005de9674db09adfe043f649193168108f (diff) | |
download | dwb-eff86b5a94eaeb28ae62f47984837ee7ba9e061e.zip |
Parse commands only from DWB_FIFO not stdout in userscripts
Diffstat (limited to 'doc/dwb.1')
-rw-r--r-- | doc/dwb.1 | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |