diff options
author | Florent Le Coz <louiz@louiz.org> | 2012-07-05 00:49:00 +0200 |
---|---|---|
committer | Florent Le Coz <louiz@louiz.org> | 2012-07-05 00:50:47 +0200 |
commit | d47c31a58748d6cfc52c893eaf39d5412cba1f84 (patch) | |
tree | c7017b92a9011a4b5fcf75541ac079f43d1c4d86 /doc/en/plugins | |
parent | 73b8addafe654077b80b33e8f200c33ec671d2ee (diff) | |
download | poezio-d47c31a58748d6cfc52c893eaf39d5412cba1f84.tar.gz poezio-d47c31a58748d6cfc52c893eaf39d5412cba1f84.tar.bz2 poezio-d47c31a58748d6cfc52c893eaf39d5412cba1f84.tar.xz poezio-d47c31a58748d6cfc52c893eaf39d5412cba1f84.zip |
Properly quote the %(body)s and %(from)s used in the simple_notify plugin.
Diffstat (limited to 'doc/en/plugins')
-rw-r--r-- | doc/en/plugins/simple_notify.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/en/plugins/simple_notify.txt b/doc/en/plugins/simple_notify.txt index 5cadf941..b12e7525 100644 --- a/doc/en/plugins/simple_notify.txt +++ b/doc/en/plugins/simple_notify.txt @@ -20,9 +20,9 @@ command = notify-send -i /path/to/poezio/data/poezio_80.png "New message from %( [source,conf] --------------------------------------------------------------------- [simple_notify] -command = echo %{from}s\> %{body}s >> some.fifo +command = echo \\<%{from}s\\> %{body}s >> some.fifo delay = 3 -after_command echo = >> some.fifo +after_command = echo >> some.fifo --------------------------------------------------------------------- You can put any command, instead of these ones. You can also use the |