# notify-pipe

`notify-pipe` allows you to pipe the output from any command to  desktop notifications

# installing

`notify-pipe` requires Python.

    git clone https://github.com/fasib/notify-pipe

installing with setup_tools

    cd notify_pipe
    python setup.py install

or using an alias inside of '~/.bashrc':

    alias notify-pipe='python ~/path/to/notify_pipe.py'

# examples

    echo "test" | notify-pipe -n Test
    
    ping localhost | notify-pipe -n ping
    
    tail -f /var/log/syslog | notify-pipe -n syslog

