Skip to content

Instantly share code, notes, and snippets.

@mmozuras
Created September 4, 2013 12:32
Show Gist options
  • Save mmozuras/6436306 to your computer and use it in GitHub Desktop.
Save mmozuras/6436306 to your computer and use it in GitHub Desktop.
irssi-xmpp instructions for Mac OSX

Installation

brew install irssi    
brew install loudmouth
git clone git@github.com:weiss/irssi-xmpp.git
cd irssi-xmpp
LDFLAGS='-flat_namespace -undefined warning -fPIC'; export LDFLAGS
make PREDIX=/usr/local/Cellar/irssi/0.8.15
make user-install

Configuration

Add to ~/.irssi/startup

/load xmpp

Add servers to ~/.irssi/config:

servers = (
  {
    address = "chat.somewhere.net";
    chatnet = "xmpp";
    autoconnect = "yes";
    password = "password";
  },
)

Add chatnets to ~/.irssi/config:

chatnets = {
  xmpp = {
    type = "XMPP";
    nick = "name@chat.somewhere.net";
  };
};  
@ljank
Copy link

ljank commented Sep 5, 2013

s/PREDIX/PREFIX/ :)

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