Re: Notmuch mail notifier applet for Gnome?
authorJason Woofenden <jason@jasonwoof.com>
Fri, 15 Jul 2011 18:11:23 +0000 (14:11 +2000)
committerW. Trevor King <wking@tremily.us>
Fri, 7 Nov 2014 17:39:07 +0000 (09:39 -0800)
2e/2b28fe634a35267b338877035f46b5735fc559 [new file with mode: 0644]

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