Go to file
C. McEnroe 2e61779082
Rename catgirl.7 to README.7
2019-12-19 02:13:38 -05:00
.gitignore Ignore sandman 2018-11-30 15:43:19 -05:00
Darwin.mk Use braces in Makefile 2019-07-27 18:05:06 -04:00
LICENSE Add LICENSE file 2018-08-02 20:55:21 -04:00
Linux.mk Use braces in Makefile 2019-07-27 18:05:06 -04:00
Makefile Rename catgirl.7 to README.7 2019-12-19 02:13:38 -05:00
NetBSD.mk Use braces in Makefile 2019-07-27 18:05:06 -04:00
README.7 Rename catgirl.7 to README.7 2019-12-19 02:13:38 -05:00
catgirl.1 Add C-u and move underline to C-_ 2019-10-03 14:40:23 -04:00
chat.c Remove -W WEBIRC option 2019-09-16 17:41:18 -04:00
chat.h Update git URL 2019-12-15 19:45:05 -05:00
color.c Deal with ~users in colorGen 2019-07-02 21:41:52 -04:00
edit.c Add C-u and move underline to C-_ 2019-10-03 14:40:23 -04:00
event.c Make copyright headers consistent 2019-07-27 18:00:01 -04:00
format.c Make copyright headers consistent 2019-07-27 18:00:01 -04:00
handle.c Refresh prompt on 001 with different nick 2019-10-26 19:27:50 -04:00
input.c Add restricted mode 2019-09-16 16:57:50 -04:00
irc.c Remove -W WEBIRC option 2019-09-16 17:41:18 -04:00
log.c Make copyright headers consistent 2019-07-27 18:00:01 -04:00
man.sh Rename project catgirl 2018-11-27 19:13:27 -05:00
pls.c Make copyright headers consistent 2019-07-27 18:00:01 -04:00
sandman.1 Restart process in sandman 2019-07-02 18:04:27 -04:00
sandman.m Restart process in sandman 2019-07-02 18:04:27 -04:00
sshd_config Rename project catgirl 2018-11-27 19:13:27 -05:00
tab.c Make copyright headers consistent 2019-07-27 18:00:01 -04:00
tag.c Move nick and tag coloring to color.c 2019-02-25 23:10:40 -05:00
term.c Make copyright headers consistent 2019-07-27 18:00:01 -04:00
ui.c Add C-u and move underline to C-_ 2019-10-03 14:40:23 -04:00
url.c Make copyright headers consistent 2019-07-27 18:00:01 -04:00

README.7

.Dd February 25, 2019
.Dt CATGIRL 7
.Os "Causal Agency"
.
.Sh NAME
.Nm catgirl
.Nd IRC client
.
.Sh DESCRIPTION
.Nm
is a curses IRC client
originally intended for
use over anonymous SSH.
.
.Pp
It requires LibreSSL
.Pq Fl ltls
and targets
.Fx ,
Darwin,
.Nx
and
GNU/Linux.
.
.Sh INSTALL
On platforms other than
.Fx ,
copy the appropriate file to
.Pa config.mk
and modify as needed.
The default install
.Va PREFIX
is
.Pa ~/.local .
.
.Pp
.Bd -literal -offset indent
cp $(uname).mk config.mk
make
make install
.Ed
.
.Ss Darwin
LibreSSL is assumed to be installed with
.Xr brew 1 .
The
.Xr sandman 1
wrapper is also installed.
.
.Ss NetBSD
LibreSSL is assumed to be installed with
.Xr pkgsrc 7 .
Due to bugs in
.Nx Ap s
.Xr curses 3
implementation,
some of the UI is currently broken.
.
.Ss GNU/Linux
LibreSSL is assumed to be manually installed in
.Pa /usr/local
and is statically linked.
.
.Sh FILES
.Bl -tag -width sandman.m -compact
.It Pa chat.h
shared state and function prototypes
.It Pa chat.c
command line parsing
.It Pa event.c
event loop and process spawning
.It Pa tag.c
tag (channel, query) ID assignment
.It Pa handle.c
incoming command handling
.It Pa input.c
input command handling
.It Pa irc.c
TLS client connection
.It Pa format.c
IRC formatting
.It Pa color.c
nick and channel coloring
.It Pa ui.c
cursed UI
.It Pa term.c
terminal features unsupported by curses
.It Pa edit.c
line editing
.It Pa tab.c
tab-complete
.It Pa url.c
URL detection
.It Pa pls.c
functions which should not have to be written
.It Pa sandman.m
utility for Darwin to signal sleep
.El
.
.Pp
.Bl -tag -width sshd_config -compact
.It Pa sshd_config
anonymous SSH configuration
.It Pa man.sh
.Xr man 1
implementation for chroot
.El
.
.Sh SEE ALSO
.Xr catgirl 1 ,
.Xr sandman 1