Last active
March 17, 2025 03:33
-
-
Save lambdan/4d9ac5a63e56c6d1d9169f5b81de9dd6 to your computer and use it in GitHub Desktop.
Twitch chat with irssi - October 2023
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This is short and sweet!
Thank ya for the nice TL;DR!