2014-08-26 19:19:03 +02:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
# This script downloads external ZNC modules which I use.
|
2014-09-24 18:00:24 +02:00
|
|
|
set -x
|
2015-01-16 10:17:12 +01:00
|
|
|
|
|
|
|
# znc/ is the cloned git repostiory (https://github.com/znc/znc.git)
|
2015-01-16 10:11:50 +01:00
|
|
|
cd znc/modules
|
2015-04-01 23:06:33 +02:00
|
|
|
wget -Nc https://raw.githubusercontent.com/DarthGandalf/znc/dgmods/modules/kvirc.cpp
|
|
|
|
wget -Nc https://raw.githubusercontent.com/kylef/znc-contrib/master/privmsg.cpp
|
|
|
|
wget -Nc https://github.com/NuclearW/znc-modules/raw/master/away_notify/away_notify.cpp
|
|
|
|
wget -Nc https://github.com/NuclearW/znc-modules/raw/master/away_notify/away_notify_unsolicited.cpp
|
|
|
|
wget -Nc https://raw.githubusercontent.com/Zarthus/Code-Snippets/master/c++/znc-modules/ctcp_notifier.cpp
|
|
|
|
wget -Nc https://github.com/jpnurmi/znc-playback/raw/master/playback.cpp
|
|
|
|
wget -Nc https://github.com/jpnurmi/znc-chanfilter/raw/master/chanfilter.cpp
|
|
|
|
wget -Nc https://github.com/KindOne-/znc-modules/raw/master/modules/freenodeinfo.cpp
|
|
|
|
wget -Nc https://raw.githubusercontent.com/NuclearW/znc-modules/master/privmsg_auto/privmsg_auto.cpp
|
|
|
|
wget -Nc https://github.com/jpnurmi/znc-clientbuffer/raw/master/clientbuffer.cpp
|
2015-03-03 06:57:40 +01:00
|
|
|
# UNSTABLE!
|
2015-04-01 23:06:33 +02:00
|
|
|
#wget -Nc https://raw.githubusercontent.com/kylef/znc-contrib/master/clientaway.cpp
|
2015-03-03 06:57:40 +01:00
|
|
|
rm clientaway.cpp
|
|
|
|
rm ~/.local/lib/znc/clientaway.so
|
2015-02-23 12:29:30 +01:00
|
|
|
|
2015-02-23 12:31:41 +01:00
|
|
|
# modpython
|
2015-04-01 23:06:33 +02:00
|
|
|
wget -Nc https://raw.githubusercontent.com/jreese/znc-push/python/push.py
|
|
|
|
wget -Nc https://gist.github.com/kylef/840763/raw/pyeval.py
|
|
|
|
wget -Nc https://github.com/Nothing4You/znc-modules/raw/master/kill_notice.py
|
2015-02-23 12:31:41 +01:00
|
|
|
|
|
|
|
# now you should compile znc normally or use zncconfigure in this
|
|
|
|
# repository.
|