glirc: Console IRC client

[ library, network, program ] [ Propose Tags ]

Console IRC client


[Skip to Readme]

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

Versions [RSS] 2.0, 2.1, 2.2, 2.3, 2.4, 2.5, 2.6, 2.7, 2.8, 2.9, 2.10, 2.11, 2.12, 2.13, 2.14, 2.15, 2.16, 2.17, 2.18, 2.19, 2.20, 2.20.1, 2.20.1.1, 2.20.2, 2.20.2.1, 2.20.3, 2.20.4, 2.20.5, 2.20.6, 2.21, 2.21.1, 2.22, 2.23, 2.24, 2.25, 2.26, 2.27, 2.28, 2.29, 2.30, 2.31, 2.32, 2.33, 2.33.1, 2.34, 2.35, 2.36, 2.37, 2.38, 2.39, 2.39.0.1, 2.40, 2.40.1
Change log ChangeLog.md
Dependencies async (>=2.1 && <2.2), attoparsec (>=0.13 && <0.14), base (>=4.9 && <4.10), bytestring (>=0.10.8 && <0.11), config-value (>=0.5 && <0.6), connection (>=0.2.5 && <0.3), containers (>=0.5.7 && <0.6), data-default-class (>=0.1.2 && <0.2), deepseq (>=1.4 && <1.5), directory (>=1.2.6 && <1.3), filepath (>=1.4.1 && <1.5), gitrev (>=1.2 && <1.3), hashable (>=1.2.4 && <1.3), irc-core (>=2.0 && <2.1), lens (>=4.14 && <4.15), network (>=2.6.2 && <2.7), regex-tdfa (>=1.2 && <1.3), regex-tdfa-text (>=1.0 && <1.1), split (>=0.2 && <0.3), stm (>=2.4 && <2.5), text (>=1.2.2 && <1.3), time (>=1.6 && <1.7), tls (>=1.3.8 && <1.4), transformers (>=0.5.2 && <0.6), unordered-containers (>=0.2.7 && <0.3), vector (>=0.11 && <0.12), vty (>=5.7 && <5.8), x509 (>=1.6.3 && <1.7), x509-store (>=1.6.1 && <1.7), x509-system (>=1.6.3 && <1.7) [details]
License ISC
Copyright 2016 Eric Mertens
Author Eric Mertens
Maintainer emertens@gmail.com
Category Network
Home page https://github.com/glguy/irc-core
Bug tracker https://github.com/glguy/irc-core/issues
Source repo head: git clone git://github.com/glguy/irc-core.git -b v2
Uploaded by EricMertens at 2016-08-10T22:53:15Z
Distributions Arch:2.39.0.1, Debian:2.36
Executables glirc2
Downloads 33823 total (147 in the last 30 days)
Rating 2.0 (votes: 1) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs not available [build log]
Last success reported on 2016-11-21 [all 3 reports]

Readme for glirc-2.7

[back to package description]

My IRC client

Build Status

Client Features

  • Subsequent joins and parts fold into one line and do not scroll chat messages off the screen
  • Ignore support that folds ignored messages into the joins and parts. Toggle it off to see previously hidden messages
  • Detailed view to see all the messages in a channel in full detail with hostmask and timestamp (F2)
  • Nick tab completion
  • New message notification
  • View ban, quiet, invex, and exception lists
  • WYSIWYG mIRC formatting input
  • Chanserv integration
  • Each user's nick is assigned a consistent color, when a user's nick is rendered in a chat message it uses that same color.
  • Support for /STATUSMSG/ messages (messages only voice or op users can see)
  • Run commands upon connection
  • Ban lists don't obstruct chat messages
  • Ban list and user list are searchable
  • CERTFP and SASL authentication

TLS

glirc has TLS support via the Haskell tls package. Note that Freenode (and other networks) will allow you to authenticate to NickServ via a client certificate.

I use the x509-store for decoding certificates and private key files. This library seems to support PEM formatted files and does not seem to support encrypted private key files. If the key and certificate are both contained in the certificate file the private key command line argument is unnecessary.

Startup

glirc [FLAGS] INITIAL_NETWORKS...
  -c PATH  --config=PATH  Configuration file path
  -h       --help         Show help
  -v       --version      Show version

Environment variables

USER=<default nickname and username>
IRCPASSWORD=<your irc password>

Configuration file

A configuration file can currently be used to provide some default values instead of using command line arguments. If any value is missing the default will be used.

The default configuration file path is ~/.config/glirc/config

Relative paths are relative to the home directory.

Learn more about this file format at config-value

-- Defaults used when not specified on command line
defaults:
  port:            6667
  nick:            "yournick"
  username:        "yourusername"
  realname:        "Your real name"
  password:        "IRC server password"
  tls:             yes -- or: no
  tls-client-cert: "/path/to/cert.pem"
  tls-client-key:  "/path/to/cert.key"

-- Override the defaults when connecting to specific servers
servers:
  * hostname:      "chat.freenode.net"
    sasl-username: "someuser"
    sasl-password: "somepass"
    socks-host:    "socks5.example.com"
    socks-port:    8080 -- defaults to 1080

  * name: "example"
    hostname:      "example.com"
    port:          7000
    connect-cmds:
      * "JOIN #favoritechannel,#otherchannel"
      * "PRIVMSG mybot :another command"

    -- Specify additional certificates beyond the system CAs
    server-certificates:
      * "/path/to/extra/certificate.pem"

palette:
  time:
    fg: [10,10,10] -- RGB values for color for timestamps
    bg: blue
  nick-colors:
    [ cyan, magenta, green, yellow, blue
    , bright-cyan, bright-magenta, bright-green, bright-blue
    , 218,  88,  89, 124, 160, 205, 212, 224 -- reds
    ,  94, 130, 166, 172, 208, 214, 216, 180 -- oranges
    ,  58, 226, 229, 184, 187, 100, 142, 220 -- yellows
    ,  22,  34,  40,  82,  70,  64,  48,  85 -- greens
    ,  25,  27,  33,  39,  51,  80,  81,  75 -- blues
    ,  69,  61,  56,  54, 129,  93,  99, 147 -- purples
    ]

Configuration sections:

  • defaults - These settings are used for all connections
  • servers - These settings are used to override defaults when the hostname matches
  • palette - Client color overrides
  • window-names - text - Names of windows (typically overridden on non QWERTY layouts)
  • nick-padding - nonnegative integer - Nicks are padded until they have the specified length

Settings

  • name - text - name of server entry, defaults to hostname
  • hostname - text - hostname used to connect and to specify the server
  • port - number - port number, defaults to 6667 without TLS and 6697 with TLS
  • nick - text - nickname
  • username - text - username
  • realname - text - realname / GECOS
  • password - text - server password
  • sasl-username - text - SASL username
  • sasl-password - text - SASL password
  • tls - yes/no - use TLS to connect
  • tls-insecure - yes/no - disable certificate validation
  • tls-client-cert - text - path to TLS client certificate
  • tls-client-key - text - path to TLS client key
  • connect-cmds - list of text - raw IRC commands to send upon connection
  • socks-host - text - hostname of SOCKS proxy to connect through
  • socks-port - number - port number of SOCKS proxy to connect through
  • server-certificates - list of text - list of CA certificates to use when validating certificates
  • chanserv-channels - list of text - list of channels with chanserv op permission
  • flood-penalty - number - cost in seconds per message
  • flood-threshold - number - threshold of seconds for burst
  • message-hooks - list of text - names of hooks to enable

Palette

  • nick-colors - List of attr - Use for nick highlights
  • self - attr - attr of our own nickname(s) outside of mentions
  • self-highlight - attr - attr of our own nickname(s) in mentions (defaults to self)
  • time - attr - attr for timestamp
  • meta - attr - attr for metadata
  • sigil - attr - attr for sigils
  • label - attr - attr for information labels
  • latency - attr - attr for latency time
  • error - attr - attr for error messages
  • textbox - attr - attr for textbox edges
  • window-name - attr - attr for current window name
  • activity - attr - attr for activity notification
  • mention - attr - attr for mention notification

Text Attributes

Text attributes can be specified either as a single foreground color or section of attributes.

  • <number> - Maps to a terminal color
  • <name> - Direct selection of standard 16 terminal colors
  • [red-number, blue-number, green-number] - List of 3 numbers in range 0-255 map to an approximation of the RGB color.

Attributes

  • fg - foreground color
  • bg - background color
  • style - single style or list of styles

Styles

  • blink
  • bold
  • dim
  • standout
  • reverse-video
  • underline

Commands

Client commands

  • /exit - Terminate the client
  • /quit - Gracefully terminate connection to the current server
  • /connect <name> - Connect to the given server
  • /disconnect - Forcefully terminate connection to the current server
  • /reconnect - Reconnect to the current server
  • /reload - Reload the previous configuration file (not retroactive!)
  • /reload <path> - Load a new configuration file

Connection commands

  • /nick <nick> - Change nickname
  • /away <message> - Set away status

Window management

  • /focus <server> - Change focus to server window
  • /focus <server> <channel> - Change focus to channel window
  • /clear - Clear contents of current window
  • /ignore <nick> - Toggle ignore of a user
  • /channel <channel> - Change focus to channel on current network (alias: /c)

Channel membership

  • /join <channel> - Join a channel (alias: /j)
  • /part - Part from current channel

Chat commands

  • /msg <target> <msg> - Send a message on the current server to target
  • /notice <target> <msg> - Send a notice message on the current server to target
  • /ctcp <target> <command> <args> - Send a ctcp command on the current server to target
  • /me <msg> - Send action message to channel
  • /say <msg> - Send normal message to channel

Channel management

  • /mode <mode> <params> - Change modes on the current channel (advanced tab completion)
  • /kick <nick> - Kick a user
  • /kickban <nick> - Kick and ban a user
  • /remove - Gracefully kick a user
  • /topic <topic> - Change the topic (tab completion for topic)
  • /invite <nick> - Invite a user to the current channel

Queries

  • /who <query> - Perform WHO query (use detailed view to see output)
  • /whois <nick> - Perform WHOIS query
  • /whowas <nick> - Perform WHOWAS query
  • /ison <nick> - Perform ISON query
  • /userhost <nick> - Perform USERHOST query
  • /links <server> - Perform LINKS query
  • /time - Perform TIME query
  • /stats <query> - Perform STATS query

Channel information

  • /users - Show channel user list
  • /masks <mode> - Show channel bans(b), quiets(q), exempts(e), or invex(I)
  • /channelinfo - Show channel topic, creation, url

Window filters

  • /grep - Filter chat messages using a regular expression
  • /grepi - Filter chat messages using a case-insensitive regular expression on the message

ZNC-specific

  • /znc <module> <parameters> - send command to ZNC module without echoing to all clients
  • /znc-playback - ZNC playback module - play everything
  • /znc-playback <time> - ZNC playback module - play everything start at the given time today
  • /znc-playback <date> <time> - ZNC playback module - play everything start at the given time

Low-level

  • /quote <raw command> - Send a raw IRC command to the server

Keyboard Shortcuts

  • ^N next channel
  • ^P previous channel
  • M-# jump to window - 1234567890qwertyuiop!@#$%^&*()QWERTYUIOP
  • M-A jump to activity
  • ^A beginning of line
  • ^E end of line
  • ^K delete to end
  • ^U delete to beginning
  • ^D delete at cursor
  • ^W delete word backwards
  • ^Y paste from yank buffer
  • M-F forward word
  • M-B backward word
  • M-BACKSPACE delete word backwards
  • M-D delete word forwards
  • TAB nickname completion
  • F2 toggle detailed view
  • Page Up scroll up
  • Page Down scroll down
  • ^B bold
  • ^C color
  • ^V reverse video
  • ^_ underline
  • ^] italic
  • ^O reset formatting
  • M-Enter insert newline

Hooks

buffextras

Enable this hook when using ZNC and the buffextra module in order to reinterpret this module's messages natively in the client.