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
|
2014-08-26 19:19:03 +02:00
|
|
|
cd znc
|
|
|
|
cd modules
|
|
|
|
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 18:00:24 +02: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
|
|
|
|
|
2014-12-25 15:22:01 +01:00
|
|
|
# ~/.znc/modules for mod* modules
|
2014-08-26 19:19:03 +02:00
|
|
|
mkdir -p ~/.znc/modules
|
|
|
|
cd ~/.znc/modules
|
|
|
|
curl -LO https://raw.githubusercontent.com/jreese/znc-push/python/push.py
|