Skip to content

Instantly share code, notes, and snippets.

@lambdan
Last active March 19, 2024 13:52
Show Gist options
  • Star 16 You must be signed in to star a gist
  • Fork 5 You must be signed in to fork a gist
  • Save lambdan/4d9ac5a63e56c6d1d9169f5b81de9dd6 to your computer and use it in GitHub Desktop.
Save lambdan/4d9ac5a63e56c6d1d9169f5b81de9dd6 to your computer and use it in GitHub Desktop.
Twitch chat with irssi - October 2023
Tested working 15 Jun 2020, irssi version 1.2.2
(Update: still works October 2023!)
This is a TLDR version of https://blog.crunchprank.net/connecting-to-twitch-chat-via-irssi/
Get your OAuth token (password) here: https://twitchapps.com/tmi/
# Network setup:
/network add -nick YOUR_TWITCH_USERNAME Twitch
/server add -auto -ssl -network Twitch irc.chat.twitch.tv 6697 YOUR_OAUTH_TOKEN
/network add -autosendcmd "/quote CAP REQ :twitch.tv/membership" Twitch
/ignore jtv
/save
# Manually connect (or just restart irssi):
/connect Twitch
# Automatically join channels:
/channel add -auto #channel Twitch
/save
# Manually join channel:
/join #channel
@irishgordo
Copy link

This is short and sweet!
Thank ya for the nice TL;DR!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment