2014-08-26 20:19:03 +03:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
# This script downloads external ZNC modules which I use.
|
2014-09-24 19:00:24 +03:00
|
|
|
set -x
|
2015-01-16 11:17:12 +02:00
|
|
|
|
|
|
|
# znc/ is the cloned git repostiory (https://github.com/znc/znc.git)
|
2015-01-16 11:11:50 +02:00
|
|
|
cd znc/modules
|
2014-08-26 20:19:03 +03:00
|
|
|
curl -LO https://raw.githubusercontent.com/DarthGandalf/znc/dgmods/modules/kvirc.cpp
|
|
|
|
curl -LO https://raw.githubusercontent.com/kylef/znc-contrib/master/privmsg.cpp
|
2014-09-24 19:00:24 +03:00
|
|
|
curl -LO https://github.com/NuclearW/znc-modules/raw/master/away_notify/away_notify.cpp
|
|
|
|
curl -LO https://github.com/NuclearW/znc-modules/raw/master/away_notify/away_notify_unsolicited.cpp
|
2015-01-10 19:35:35 +02:00
|
|
|
curl -LO https://raw.githubusercontent.com/Zarthus/Code-Snippets/master/c++/znc-modules/ctcp_notifier.cpp
|
2015-01-24 21:15:15 +02:00
|
|
|
curl -LO https://github.com/jpnurmi/znc-playback/raw/master/playback.cpp
|
2014-09-24 19:00:24 +03:00
|
|
|
|
2015-01-24 21:15:15 +02:00
|
|
|
# now you should compile znc normally or use zncconfigure in this
|
|
|
|
# repository.
|
2015-01-16 11:17:12 +02:00
|
|
|
|
|
|
|
# ~/.znc/modules for mod* modules that aren't compiled with ZNC
|
2014-08-26 20:19:03 +03:00
|
|
|
mkdir -p ~/.znc/modules
|
|
|
|
cd ~/.znc/modules
|
|
|
|
curl -LO https://raw.githubusercontent.com/jreese/znc-push/python/push.py
|