Update 2024-03-25 07:41 OpenBSD/amd64-x13

This commit is contained in:
c0dev0id 2024-03-25 07:41:10 +01:00
parent 2a4a6d23d5
commit 5cb79d7766
3 changed files with 41 additions and 1 deletions

5
.config/catgirl/mkconfig.sh Executable file
View File

@ -0,0 +1,5 @@
#!/bin/sh
for i in Bitreich HackInt IRCNet LiberaChat OFTC UUGRN
do
./template.sh $i > $i
done

35
.config/catgirl/template.sh Executable file
View File

@ -0,0 +1,35 @@
#!/bin/sh
SERVER=irc.uugrn.org
PORT=8665
NETWORK=$1
HOSTNAME=$(hostname -s)
PASS=$(pass UUGRN/irc.uugrn.org | head -1)
cat <<EOF
# catgirl
log
ignore = * [JPQ][OAU][IR][NT]
# server
host = $SERVER
port = $PORT
# user
nick = sdk
real = sdk
user = sdk
pass = sdk@$HOSTNAME/$NETWORK:$PASS
# utilities
copy = xcopy
open = nnn.sh
notify = xnotify
# time
# timestamp = %Y-%m-%d %H:%M:%S
# debug
EOF

File diff suppressed because one or more lines are too long