Created
November 21, 2010 20:51
-
-
Save wilson/709136 to your computer and use it in GitHub Desktop.
irssi config for gtalk using irssi-xmpp plugin
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
# 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 = "[email protected]"; | |
}; | |
}; | |
windows = { | |
1 = { | |
immortal = "yes"; | |
name = "(status)"; | |
level = "ALL"; | |
sticky = "yes"; | |
}; | |
2 = { name = "(GTalk)"; sticky = "yes"; parent = "1"; }; | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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"; } );