Return-Path: X-Original-To: notmuch@notmuchmail.org Delivered-To: notmuch@notmuchmail.org Received: from localhost (localhost [127.0.0.1]) by olra.theworths.org (Postfix) with ESMTP id 0C871431FD0 for ; Fri, 15 Jul 2011 11:11:31 -0700 (PDT) X-Virus-Scanned: Debian amavisd-new at olra.theworths.org X-Spam-Flag: NO X-Spam-Score: -0.7 X-Spam-Level: X-Spam-Status: No, score=-0.7 tagged_above=-999 required=5 tests=[RCVD_IN_DNSWL_LOW=-0.7] autolearn=disabled Received: from olra.theworths.org ([127.0.0.1]) by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 5ticXWGnYhNW for ; Fri, 15 Jul 2011 11:11:29 -0700 (PDT) Received: from mail-qy0-f174.google.com (mail-qy0-f174.google.com [209.85.216.174]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) (No client certificate requested) by olra.theworths.org (Postfix) with ESMTPS id 8101D431FB6 for ; Fri, 15 Jul 2011 11:11:29 -0700 (PDT) Received: by qyk29 with SMTP id 29so606019qyk.5 for ; Fri, 15 Jul 2011 11:11:28 -0700 (PDT) Received: by 10.224.207.202 with SMTP id fz10mr3174034qab.168.1310753488739; Fri, 15 Jul 2011 11:11:28 -0700 (PDT) Received: from compy.jasonwoof.org (c-98-216-100-90.hsd1.ma.comcast.net [98.216.100.90]) by mx.google.com with ESMTPS id o4sm1032348qct.1.2011.07.15.11.11.26 (version=TLSv1/SSLv3 cipher=OTHER); Fri, 15 Jul 2011 11:11:26 -0700 (PDT) Date: Fri, 15 Jul 2011 14:11:23 -0400 From: Jason Woofenden To: notmuch@notmuchmail.org Subject: Re: Notmuch mail notifier applet for Gnome? Message-ID: <20110715181123.GB27859@compy.jasonwoof.org> Mail-Followup-To: notmuch@notmuchmail.org References: <87fwmbcg4h.fsf@hecate.student.uu.se> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <87fwmbcg4h.fsf@hecate.student.uu.se> User-Agent: Mutt/1.5.21 (2010-09-15) X-BeenThere: notmuch@notmuchmail.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: "Use and development of the notmuch mail system." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 15 Jul 2011 18:11:31 -0000 Albin, I couldn't find any existing program to get put text into the gnome panel, so I eventually built something: https://gitorious.org/jasonwoof/now-playing-d It just reads stdin, and displays the most recent full line in your notification area. I do something like this: mkfifo ~/tmp/systray-text while true; do cat ~/tmp/systray-text; done | ~/bin/now-playing-d then I can: echo "$(notmuch count tag:unread) unread" > ~/tmp/systray-text I'm still using gnomeConfig and set xmonad as the gnome window manager. Recently I got gnome not to start gname-panel (because gnome-panel broke) and I've been running xmobar instead. Just wanted to say that you don't have to run gnome-panel. You can disable gnome-panel with gconf-editor, and say that your panel command is /bin/true or something. -- Jason