From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andrea Crotti Subject: Re: GNU devroom at FOSDEM 2011 Date: Wed, 02 Feb 2011 12:10:57 +0100 Message-ID: References: <87k4ib6vhl.fsf@gnu.org> <70D9A290-AC68-4A64-81A1-0A2793D446D9@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from [140.186.70.92] (port=52190 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PkdlL-0002ho-Pf for emacs-orgmode@gnu.org; Wed, 02 Feb 2011 09:32:56 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Pkacg-0007jR-Dj for emacs-orgmode@gnu.org; Wed, 02 Feb 2011 06:11:43 -0500 Received: from lo.gmane.org ([80.91.229.12]:55103) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Pkacg-0007ec-1t for emacs-orgmode@gnu.org; Wed, 02 Feb 2011 06:11:42 -0500 Received: from list by lo.gmane.org with local (Exim 4.69) (envelope-from ) id 1Pkac9-0001Yq-UI for emacs-orgmode@gnu.org; Wed, 02 Feb 2011 12:11:09 +0100 Received: from ip1-201.halifax.rwth-aachen.de ([137.226.108.201]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 02 Feb 2011 12:11:09 +0100 Received: from andrea.crotti.0 by ip1-201.halifax.rwth-aachen.de with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 02 Feb 2011 12:11:09 +0100 List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org Carsten Dominik writes: > Hi everyone, > > I will be at the meeting on Saturday, and I hope to meet some of you! > If you have an org-mode T-Shirt - I think it would be fun to wear > it - I will. > > Most of all, I will be very pleased to finally meet Bastien in person. > > - Carsten > I will be there too and happy to meet who changed my life (well at least from the productivity point of view). @Bastian: if you use OSX and growl maybe you could find this useful for the presentation: --8<---------------cut here---------------start------------->8--- (defun growl-popup (msg) "Pop up a growl notification with MSG, or display an Emacs message. The \"growlnotify\" program is used if `window-system' is non-nil and the program is found in `exec-path'; otherwise `message' is used." (interactive) (if (and window-system (executable-find "growlnotify")) (shell-command (concat "growlnotify -a /Applications/Emacs.app/ -m " (shell-quote-argument msg))) (message msg))) (defun popup-last () (interactive) (let ((last-key (key-description (this-command-keys)))) ;; check if we don't have a "stupid" sequence (unless (= (length (this-command-keys-vector)) 1) (growl-popup last-key)))) ;TODO: make it an external package and better a minor-mode, switching would also be much easier (setq growl-mode nil) (defun growl () (interactive) (if (not growl-mode) (progn (message "enabling growl mode notification") (add-hook 'pre-command-hook 'popup-last) (setq growl-mode t)) (progn (setq-default pre-command-hook (remq 'popup-last pre-command-hook)) (message "disabling growl mode notification") (setq growl-mode nil)))) --8<---------------cut here---------------end--------------->8--- In this way people can see what you are pressing (all commands with at least two keys).