2012-01-10 15:35:53 +00:00
|
|
|
|
Simple Notify
|
|
|
|
|
=============
|
|
|
|
|
|
|
|
|
|
This plugin lets you execute a command, to notify you from new important
|
|
|
|
|
messages.
|
|
|
|
|
|
|
|
|
|
Installation and configuration
|
|
|
|
|
------------------------------
|
|
|
|
|
|
|
|
|
|
You need to create a plugin configuration file. Create a file named _simple_notify.cfg_
|
|
|
|
|
into your plugins configuration directory (_~/.config/poezio/plugins_ by
|
|
|
|
|
default), and fill it like this:
|
|
|
|
|
|
|
|
|
|
[source,conf]
|
|
|
|
|
---------------------------------------------------------------------
|
|
|
|
|
[simple_notify]
|
|
|
|
|
command = notify-send -i /path/to/poezio/data/poezio_80.png "New message from %(from)s" "%(body)s"
|
|
|
|
|
---------------------------------------------------------------------
|
|
|
|
|
|
2012-07-02 23:59:25 +00:00
|
|
|
|
[source,conf]
|
|
|
|
|
---------------------------------------------------------------------
|
|
|
|
|
[simple_notify]
|
2012-07-04 22:49:00 +00:00
|
|
|
|
command = echo \\<%{from}s\\> %{body}s >> some.fifo
|
2012-07-02 23:59:25 +00:00
|
|
|
|
delay = 3
|
2012-07-04 22:49:00 +00:00
|
|
|
|
after_command = echo >> some.fifo
|
2012-07-02 23:59:25 +00:00
|
|
|
|
---------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
You can put any command, instead of these ones. You can also use the
|
2012-01-10 15:35:53 +00:00
|
|
|
|
special keywords _%(from)s_ and _%(body)s_ that will be replaced
|
|
|
|
|
directly in the command line by the author of the message, and the body.
|
|
|
|
|
|
2012-07-02 23:59:25 +00:00
|
|
|
|
The first example shown above will display something like this:
|
2012-01-10 15:42:35 +00:00
|
|
|
|
image:../../images/simple_notify_example.png["Simple notify example",
|
2012-01-10 15:35:53 +00:00
|
|
|
|
title="Simple notify example"]
|
2012-05-13 16:57:58 +00:00
|
|
|
|
|
2012-07-02 23:59:25 +00:00
|
|
|
|
The second example will first write the author and the message in a
|
|
|
|
|
fifo, that fifo can locally be read by some other program (was tested
|
|
|
|
|
with the xmobar PipeReader command, which displays what is read from a
|
|
|
|
|
fifo into a status bar. Be careful, you have two different fifos in
|
|
|
|
|
that case, don’t get confused). The delay and command_after options
|
|
|
|
|
are used to erase/delete/kill the notification after a certain
|
|
|
|
|
delay. In our example it is used to display an empty message in our
|
|
|
|
|
xmobar, erasing the notification after 3 seconds.
|
|
|
|
|
|
2012-05-13 16:57:58 +00:00
|
|
|
|
NOTE: If you set the _exec_remote_ option to _true_ into the
|
|
|
|
|
link:../configure.html[main configuration file], the command will be executed
|
|
|
|
|
remotely (as explained in the link:link.html[/link help]).
|