vyapp / whocall

A simple extension for vy irc plugin a.k.a vyirc to display a dzen2 text message when someone calls you.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

whocall

A simple extension for vy irc plugin a.k.a vyirc to display a dzen2 text message when someone calls you.

screenshot-1

Usage

In your vyrc file, just install the plugin to the irc object that is an IrcMode class. It is enough to have notification of when someone mentions your nick.

from vyapp.plugins.vyirc import IrcMode
from whocall import WhoCall
# Here, the network connections can be defined. 
def irc_freenode(addr='irc.freenode.org', port=6667, user='vy vy vy :vyirc', nick='vyirc', 
             irccmd='PRIVMSG nickserv :identify nick_password', channels=['#vy']):

    irc = IrcMode(addr, port, user, nick, irccmd, channels)
    WhoCall(irc)

About

A simple extension for vy irc plugin a.k.a vyirc to display a dzen2 text message when someone calls you.

License:MIT License


Languages

Language:Python 59.5%Language:Shell 40.5%