How can I make jabber.el not show user icons?

I just installed jabber.el for use with my gmail account and I want it to stop showing user icons in the list. I just want to see the main text. How to do it?

+5
source share
3 answers

Just found the answer. You need to remove% a from the jabber-roster-line-format line to get rid of the avatar.

+6
source

Here are the jabber.el settings:

(custom-set-variables
  ;; custom-set-variables was added by Custom.
  ;; If you edit it by hand, you could mess it up, so be careful.
  ;; Your init file should contain only one such instance.
  ;; If there is more than one, they won't work right.
 '(jabber-auto-reconnect t)
 '(jabber-avatar-verbose nil)
 '(jabber-vcard-avatars-retrieve nil)
 '(jabber-chat-buffer-format "*-jabber-%n-*")
 '(jabber-history-enabled t)
 '(jabber-mode-line-mode t)
 '(jabber-roster-buffer "*-jabber-*")
 '(jabber-roster-line-format " %c %-25n %u %-8s (%r)")
 '(jabber-show-offline-contacts nil))

Removes avatars and status bar from the list. Also includes history and auto-connect. And hides offline contacts. If you need it, you can use it M-x jabber-roster-toggle-offline-display. Or, and its abbreviated jabber character names ...

+5

, , jabber-vcard-avatars-retrieve nil.

+2
source

All Articles