mirror of
https://gitea.blesmrt.net/mikaela/scripts.git
synced 2024-11-01 00:19:22 +01:00
28 lines
953 B
Bash
Executable File
28 lines
953 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# This script downloads external ZNC modules which I use.
|
|
set -x
|
|
|
|
# znc/ is the cloned git repostiory (https://github.com/znc/znc.git)
|
|
cd znc/modules
|
|
sleep 2
|
|
curl -LO https://raw.githubusercontent.com/kylef/znc-contrib/master/privmsg.cpp
|
|
sleep 2
|
|
curl -LO https://raw.githubusercontent.com/Zarthus/znc-modules/master/ctcp_notifier.cpp
|
|
sleep 2
|
|
curl -LO https://github.com/jpnurmi/znc-playback/raw/master/playback.cpp
|
|
sleep 2
|
|
curl -LO https://github.com/jpnurmi/znc-chanfilter/raw/master/chanfilter.cpp
|
|
sleep 2
|
|
curl -LO https://github.com/CyberShadow/znc-clientbuffer/raw/master/clientbuffer.cpp
|
|
|
|
# modpython
|
|
sleep 2
|
|
curl -LO https://raw.githubusercontent.com/jreese/znc-push/python/push.py
|
|
sleep 2
|
|
curl -LO https://github.com/Nothing4You/znc-modules/raw/master/kill_notice.py
|
|
sleep 2
|
|
curl -LO https://github.com/emagaliff/znc-nicktrace/raw/master/aka.py
|
|
|
|
# now you should compile znc normally or use zncconfigure in this
|
|
# repository.
|