From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/78055 Path: news.gmane.org!not-for-mail From: Christoph Conrad Newsgroups: gmane.emacs.gnus.general Subject: Re: gnus-group-icon-list considered funky Date: Mon, 21 Mar 2011 20:50:42 +0100 Message-ID: <874o6w2qqf.fsf@ID-24456.user.uni-berlin.de> References: <87pqpo6fgs.fsf@member.fsf.org> <8762rg62fn.fsf@member.fsf.org> <87ipvgqz2c.fsf@lifelogs.com> <87wrjwpjda.fsf@lifelogs.com> <87ipvc466c.fsf@ID-24456.user.uni-berlin.de> <871v20jm2c.fsf@lifelogs.com> Reply-To: Christoph Conrad NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: dough.gmane.org 1300737349 7562 80.91.229.12 (21 Mar 2011 19:55:49 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Mon, 21 Mar 2011 19:55:49 +0000 (UTC) To: ding@gnus.org Original-X-From: ding-owner+M26366@lists.math.uh.edu Mon Mar 21 20:55:44 2011 Return-path: Envelope-to: ding-account@gmane.org Original-Received: from util0.math.uh.edu ([129.7.128.18]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1Q1lCa-0003ME-0F for ding-account@gmane.org; Mon, 21 Mar 2011 20:55:44 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.math.uh.edu) by util0.math.uh.edu with smtp (Exim 4.63) (envelope-from ) id 1Q1lCY-00046S-V3; Mon, 21 Mar 2011 14:55:43 -0500 Original-Received: from mx2.math.uh.edu ([129.7.128.33]) by util0.math.uh.edu with esmtps (TLSv1:AES256-SHA:256) (Exim 4.63) (envelope-from ) id 1Q1lCX-00046A-Gb for ding@lists.math.uh.edu; Mon, 21 Mar 2011 14:55:41 -0500 Original-Received: from quimby.gnus.org ([80.91.231.51]) by mx2.math.uh.edu with esmtp (Exim 4.72) (envelope-from ) id 1Q1lCK-0000mn-En for ding@lists.math.uh.edu; Mon, 21 Mar 2011 14:55:41 -0500 Original-Received: from mailout-de.gmx.net ([213.165.64.23]) by quimby.gnus.org with smtp (Exim 4.72) (envelope-from ) id 1Q1lCJ-0003I3-6k for ding@gnus.org; Mon, 21 Mar 2011 20:55:27 +0100 Original-Received: (qmail invoked by alias); 21 Mar 2011 19:55:21 -0000 Original-Received: from ip-109-90-218-244.unitymediagroup.de (EHLO brabbelbox) [109.90.218.244] by mail.gmx.net (mp045) with SMTP; 21 Mar 2011 20:55:21 +0100 X-Authenticated: #4523881 X-Provags-ID: V01U2FsdGVkX18geNID3LEgKGRGoGWAm0rvwdADEYYgiaMa65mDuo QPYXaaMb5qALXc Original-Received: by brabbelbox (Postfix, from userid 1000) id C9E7815C04EF; Mon, 21 Mar 2011 20:55:20 +0100 (CET) X-Public-Key: http://wwwkeys.de.pgp.net:11371/pks/lookup?op=get&search=0x1B488DEA X-Hashcash: 1:20:110321:ding@gnus.org::BH2y8A2EJWb3/bXY:00007Zr6 In-Reply-To: <871v20jm2c.fsf@lifelogs.com> (Ted Zlatanov's message of "Mon, 21 Mar 2011 14:44:11 -0500") User-Agent: Gnus/5.110016 (No Gnus v0.16) Emacs/23.1 X-Y-GMX-Trusted: 0 X-Spam-Score: -1.9 (-) List-ID: Precedence: bulk Xref: news.gmane.org gmane.emacs.gnus.general:78055 Archived-At: Hi Ted, > Could you share your `gnus-group-icon-list' using Silk? Sure; exactly "some of them" means only "three". Below my complete configuration, it is Tassilos configuration with silk icons; pick the parts you need. Regards, Christoph (setq gnus-group-line-format "%M%S%p%P%E%3y: %(%G%)%l\n") ;; "Silk" Icon-Theme (setq gnus-group-icon-list '(((> unread 0) . "~/e/silk-email-icons/email_go.png") ((> ticked 0) . "~/e/silk-email-icons/email_add.png") (t . "~/e/silk-email-icons/email.png"))) ;; suppress opening "png" with "display" (defadvice gnus-group-get-icon( around gnus-group-get-icon-no-openwith act ) (let (openwith-mode) ad-do-it))