shithub: rc

Download patch

ref: ae7315a60fd8e6f73825d4c95355cb9178af129a
parent: 00cad1e655eadf3f9069b713f63e73d236135bda
author: sl <sl@x61t>
date: Wed Sep 3 19:58:37 EDT 2025

add nlast

--- a/nircs
+++ b/nircs
@@ -1,4 +1,5 @@
 #!/bin/rc
 # launch ircs.
+# http://only9fans.com/kemal/ircs/HEAD/info.html
 ircs -e -s oftc sl irc.oftc.net
 ircs -e -s libera sl irc.libera.chat
--- a/nircx
+++ b/nircx
@@ -1,5 +1,6 @@
 #!/bin/rc
 # launch ircx.
+# http://only9fans.com/kemal/ircs/HEAD/info.html
 switch($1){
 case c
 	ircx -s oftc -t '#cat-v'
--- /dev/null
+++ b/nlast
@@ -1,0 +1,13 @@
+#!/bin/rc
+# check for mentions.
+# http://only9fans.com/kemal/ircs/HEAD/info.html
+switch($1){
+case c
+	grep sl /tmp/oftc/'#cat-v'
+case libera
+	grep sl /tmp/libera/log
+case oftc
+	grep sl /tmp/oftc/log
+case u
+	grep sl /tmp/libera/'#unix_surrealism'
+}
--