Skip to content

Instantly share code, notes, and snippets.

@wilson
Created November 21, 2010 20:51
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save wilson/709136 to your computer and use it in GitHub Desktop.
Save wilson/709136 to your computer and use it in GitHub Desktop.
irssi config for gtalk using irssi-xmpp plugin
# in $HOME/.irssi/startup, put: load xmpp on a line by itself
settings = {
"fe-common/xmpp" = {
xmpp_status_window = "yes";
xmpp_send_composing = "no";
};
"xmpp/core" = { xmpp_set_nick_as_username = "yes"; };
};
servers = {
{
address = "talk.google.com";
chatnet = "GTalk";
password = "my password";
autoconnect = "yes";
}
};
chatnets = {
GTalk = {
type = "XMPP";
nick = "my.address@gmail.com";
};
};
windows = {
1 = {
immortal = "yes";
name = "(status)";
level = "ALL";
sticky = "yes";
};
2 = { name = "(GTalk)"; sticky = "yes"; parent = "1"; };
};
@gildotdev
Copy link

I had to change the braces on the servers section to parentheses like so to get this to work.

servers = ( { address = "talk.google.com"; chatnet = "GTalk"; password = "my password"; autoconnect = "yes"; } );

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