mirror of
https://gitea.blesmrt.net/mikaela/scripts.git
synced 2024-11-17 08:39:22 +01:00
22 lines
1.0 KiB
Bash
Executable File
22 lines
1.0 KiB
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
|
|
curl -LO https://raw.githubusercontent.com/DarthGandalf/znc/dgmods/modules/kvirc.cpp
|
|
curl -LO https://raw.githubusercontent.com/kylef/znc-contrib/master/privmsg.cpp
|
|
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
|
|
curl -LO https://raw.githubusercontent.com/Zarthus/Code-Snippets/master/c++/znc-modules/ctcp_notifier.cpp
|
|
curl -LO https://github.com/jpnurmi/znc-playback/raw/master/playback.cpp
|
|
curl -LO https://github.com/jpnurmi/znc-chanfilter/raw/master/chanfilter.cp
|
|
|
|
# now you should compile znc normally or use zncconfigure in this
|
|
# repository.
|
|
|
|
# ~/.znc/modules for mod* modules that aren't compiled with ZNC
|
|
mkdir -p ~/.znc/modules
|
|
cd ~/.znc/modules
|
|
curl -LO https://raw.githubusercontent.com/jreese/znc-push/python/push.py
|