Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I get jabber.el to not show the user icons?

Tags:

emacs

xmpp

I just set up jabber.el to use with my gmail account, and I want to make it stop showing the user icons in the roster. I just want to see the basic text. How do I do that?

like image 699
2daaa Avatar asked Apr 07 '11 15:04

2daaa


People also ask

How do I hide the Jabber icon?

If you would like to hide the Jabber icon that now resides at the side of your screen, uncheck Show docked window in the View menu.

How do I get the keypad on Cisco Jabber?

You can use the keypad if you're using Cisco Jabber for Windows or Mac 12.6 or later. Go to Calls, and select the keypad icon .


3 Answers

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

like image 155
2daaa Avatar answered Oct 13 '22 22:10

2daaa


Here is me 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))

It removes avatars and status line from roster. Also enables history and auto-reconnect. And hides offline contacts. If you need them - you can use M-x jabber-roster-toggle-offline-display. Or, and its shorten alittle jabber buffer names...

like image 23
NilColor Avatar answered Oct 13 '22 21:10

NilColor


You can also tell it not to download them at all by setting jabber-vcard-avatars-retrieve to nil.

like image 26
Eric Warmenhoven Avatar answered Oct 13 '22 23:10

Eric Warmenhoven