1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
|
.TH GLIRC 1 2020-07-27 "Glirc IRC client"
.SH NAME
Glirc \- an IRC client
.SH SYNOPSIS
.B glirc
[\-\-config=PATH] [\-\-noconnect] [\-\-version] [\-\-full\-version]
[\-\-config-format] [\-\-help] [network...]
.SH DESCRIPTION
.B Glirc
is a fully-featured console IRC client. It focuses on providing both
high-detail and concise views of an IRC connection. It provides an
advanced line-editing environment including syntax-highlighting,
multi-line buffering, and argument placeholders.
.SH OPTIONS
.TP
.BI "\-c, \-\-config="PATH
use
.I PATH
instead of ~/.config/glirc/config
.TP
.BI "\-!, \-\-noconnect"
disable autoconnecting
.TP
.BI "\-v, \-\-version"
print version information
.TP
.BI "\-\-full\-version"
show detailed version information
.TP
.BI "\-\-config\-format"
show configuration file format
.TP
.BI "\-h, \-\-help"
show help message
.TP
.I network
networks to connect to on startup
.SH NOTES
.B Glirc
has online documentation available inside with /help and online at
https://github.com/glguy/irc-core/wiki
.SH FILES
.TP
.I ~/.config/glirc/config
configuration file
.TP
.I ~/.config/glirc/sts.cfg
Strict Transport Security state
.SH EXAMPLES
Sample simple configuration file. More detail available at
https://github.com/glguy/irc-core/wiki/Configuration-File
.RS
defaults:
nick: "glircuser"
tls: yes
servers:
* name: "libera"
hostname: "irc.libera.chat"
* name: "oftc"
hostname: "irc.oftc.net"
.RE
|