NOTifications Over SSH
Project description
WHATEVER
========
that code is a quick and dirty hack to get notifications over ssh from my server
running irssi to my workstation. Aimed to be extended with other notification
systems.
* http://m0g.net/notossh/
* http://github.com/guyzmo/irssi-over-ssh-notifications
* http://i.got.nothing.to/post/2010/06/21/On-screen-notifications-from-IRSSI-over-SSH
for original notify.pl code :
* http://lewk.org/log/code/irssi-notify
INSTALL
=======
* REMOTE SHELL running ERC
TODO by someone who uses ERC!
* REMOTE SHELL running IRSSI
1/ copy 'notify.pl' to your ~/.irssi/scripts folder
i.e. scp notify.pl REMOTE:.irssi/scripts
2/ do '/load perl' and '/script load notify.pl' in irssi
- TIP: Add it to your irssi conf to auto load
3/ Ensure SSH allows remote tunnels - i.e. GatewayPorts yes
4/ configure the 'highlights' in your client. (if you don't know how RTFM !)
- /hilight -regex bla|bla
* Local SSH Client
1/ install the local service either by doing:
1.1/ pip install notossh
1.2/ python setup.py install
4/ configure how you want to instance it
4.1/ configure your ssh client to run it (see below)
4.2/ make your own script (or launch it manually) : `notossh start`
4.3/ to end the service run : `notossh stop`
6/ if you don't like it as is... HACK IT !
OPTIONS
=======
usage: irssi-notify-listener.py [-h] [-f] [-S] [-V] [-H HOST] [-P PORT]
[-G GROWL] [-N NOTIFY]
{start,stop} ...
IRSSI Notify Listener
positional arguments:
{start,stop}
start Starts the service
stop Stops the service
optional arguments:
-h, --help show this help message and exit
-f, --foreground Make the notifications stick
-S, --sticky Make the notifications stick
-V, --verbose Make the listener verbose
-H HOST, --host HOST Host to listen on
-P PORT, --port PORT Port to listen on
-G GROWL, --with-growl GROWL
Path to growl executable
-N NOTIFY, --with-notify NOTIFY
Path to notify executable
CONFIGURATION
=============
add to your .ssh/config those lines, where HOST is the host and port the PORT you want
to connect to :
Host HOST
PermitLocalCommand yes
LocalCommand "/path/to/bin/notossh start"
RemoteForward PORT localhost:PORT
NOTIFICATIONS
=============
to change the way notifications behaves, like on Fedora systems, you can change the notification
line to the following, making it transient :
return [args.notify, '--hint', 'int:transient:1', '-i', 'dialog-information', '-t', '5000', ':'.join(args[1:]), args[0]]
TODO
====
* enable passing through the arguments after -- to the notification service
LICENCES
========
Since 2010, that code is aimed to be hacked.
Thanks to Charles `doublerebel` Philips, Rui Abreu Ferreira and Cooper Ry Lees for their hacks!
notify.pl is under GPL (because I copy/pasted it from Luke Macken and Paul W. Frields)
everything else is WTFPL (because I don't care what you do with it, but if you don't
tell me you've improved it it, you're just a moron)
And if you like it, buy me a beer !
By Bernard `Guyzmo` Pratz
Mail-me on guyzmo at m0g dot net.
* WTFPL
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
Version 2, December 2004
Copyright (C) 2004 Sam Hocevar <sam@hocevar.net>
Everyone is permitted to copy and distribute verbatim or modified
copies of this license document, and changing it is allowed as long
as the name is changed.
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
0. You just DO WHAT THE FUCK YOU WANT TO.
* GPLv2
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
EOF
========
that code is a quick and dirty hack to get notifications over ssh from my server
running irssi to my workstation. Aimed to be extended with other notification
systems.
* http://m0g.net/notossh/
* http://github.com/guyzmo/irssi-over-ssh-notifications
* http://i.got.nothing.to/post/2010/06/21/On-screen-notifications-from-IRSSI-over-SSH
for original notify.pl code :
* http://lewk.org/log/code/irssi-notify
INSTALL
=======
* REMOTE SHELL running ERC
TODO by someone who uses ERC!
* REMOTE SHELL running IRSSI
1/ copy 'notify.pl' to your ~/.irssi/scripts folder
i.e. scp notify.pl REMOTE:.irssi/scripts
2/ do '/load perl' and '/script load notify.pl' in irssi
- TIP: Add it to your irssi conf to auto load
3/ Ensure SSH allows remote tunnels - i.e. GatewayPorts yes
4/ configure the 'highlights' in your client. (if you don't know how RTFM !)
- /hilight -regex bla|bla
* Local SSH Client
1/ install the local service either by doing:
1.1/ pip install notossh
1.2/ python setup.py install
4/ configure how you want to instance it
4.1/ configure your ssh client to run it (see below)
4.2/ make your own script (or launch it manually) : `notossh start`
4.3/ to end the service run : `notossh stop`
6/ if you don't like it as is... HACK IT !
OPTIONS
=======
usage: irssi-notify-listener.py [-h] [-f] [-S] [-V] [-H HOST] [-P PORT]
[-G GROWL] [-N NOTIFY]
{start,stop} ...
IRSSI Notify Listener
positional arguments:
{start,stop}
start Starts the service
stop Stops the service
optional arguments:
-h, --help show this help message and exit
-f, --foreground Make the notifications stick
-S, --sticky Make the notifications stick
-V, --verbose Make the listener verbose
-H HOST, --host HOST Host to listen on
-P PORT, --port PORT Port to listen on
-G GROWL, --with-growl GROWL
Path to growl executable
-N NOTIFY, --with-notify NOTIFY
Path to notify executable
CONFIGURATION
=============
add to your .ssh/config those lines, where HOST is the host and port the PORT you want
to connect to :
Host HOST
PermitLocalCommand yes
LocalCommand "/path/to/bin/notossh start"
RemoteForward PORT localhost:PORT
NOTIFICATIONS
=============
to change the way notifications behaves, like on Fedora systems, you can change the notification
line to the following, making it transient :
return [args.notify, '--hint', 'int:transient:1', '-i', 'dialog-information', '-t', '5000', ':'.join(args[1:]), args[0]]
TODO
====
* enable passing through the arguments after -- to the notification service
LICENCES
========
Since 2010, that code is aimed to be hacked.
Thanks to Charles `doublerebel` Philips, Rui Abreu Ferreira and Cooper Ry Lees for their hacks!
notify.pl is under GPL (because I copy/pasted it from Luke Macken and Paul W. Frields)
everything else is WTFPL (because I don't care what you do with it, but if you don't
tell me you've improved it it, you're just a moron)
And if you like it, buy me a beer !
By Bernard `Guyzmo` Pratz
Mail-me on guyzmo at m0g dot net.
* WTFPL
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
Version 2, December 2004
Copyright (C) 2004 Sam Hocevar <sam@hocevar.net>
Everyone is permitted to copy and distribute verbatim or modified
copies of this license document, and changing it is allowed as long
as the name is changed.
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
0. You just DO WHAT THE FUCK YOU WANT TO.
* GPLv2
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
EOF
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
notossh-1.0.tar.gz
(34.0 kB
view details)
Built Distribution
notossh-1.0-py2.7.egg
(65.6 kB
view details)
File details
Details for the file notossh-1.0.tar.gz
.
File metadata
- Download URL: notossh-1.0.tar.gz
- Upload date:
- Size: 34.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1957febba6eb6af1c2cf5fd787895d6b1e2abce7d39d22f1c94e39671991a751 |
|
MD5 | a7cf6c8484a4a4f9c53e3adcf2370310 |
|
BLAKE2b-256 | 9c1b0c62c256aaf30f9b90d36369d9c0bf70ab0591602827f1e5e52182c18e2c |
File details
Details for the file notossh-1.0-py2.7.egg
.
File metadata
- Download URL: notossh-1.0-py2.7.egg
- Upload date:
- Size: 65.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 00dd1d8b90bbf25943b37888d99c1c0471ecac29e21f322b5446fed6eb0fca17 |
|
MD5 | 84d1ad1f7cc79addc2310d2450f134c1 |
|
BLAKE2b-256 | 5b869b5506588b66884b20055ee59024372c4108a35b8c65ab9664bd17e0a358 |