| # 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"; }; | |
| }; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
gilcreque commentedJan 31, 2012
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"; } );