* MacOSX: Notifications with Growl
@ 2008-11-03 15:49 Alex Ott
2008-11-03 17:22 ` Christopher Suckling
2008-11-07 11:25 ` Rick Moynihan
0 siblings, 2 replies; 4+ messages in thread
From: Alex Ott @ 2008-11-03 15:49 UTC (permalink / raw)
To: emacs-orgmode
Hi all
I wrote small note about show notifications with Growl under Mac OS X.
This could be useful when using org-mode. Note is could be found on my site
http://xtalk.msk.su/~ott/en/writings/EmacsMacOSXAndGrowl.html
--
With best wishes, Alex Ott, MBA
http://alexott.blogspot.com/ http://xtalk.msk.su/~ott/
http://alexott-ru.blogspot.com/
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: MacOSX: Notifications with Growl
2008-11-03 15:49 MacOSX: Notifications with Growl Alex Ott
@ 2008-11-03 17:22 ` Christopher Suckling
2008-11-07 11:25 ` Rick Moynihan
1 sibling, 0 replies; 4+ messages in thread
From: Christopher Suckling @ 2008-11-03 17:22 UTC (permalink / raw)
To: emacs-orgmode
On Mon, Nov 03, 2008 at 04:49:24PM +0100, Alex Ott wrote:
> Hi all
>
> I wrote small note about show notifications with Growl under Mac OS X.
> This could be useful when using org-mode. Note is could be found on my site
> http://xtalk.msk.su/~ott/en/writings/EmacsMacOSXAndGrowl.html
>
Nice. Was looking to add this to my Quicksilver suite of scripts
http://claviclaws.net/org
when I'm back from holiday. You've saved me a bit of effort!
Christopher
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: MacOSX: Notifications with Growl
2008-11-03 15:49 MacOSX: Notifications with Growl Alex Ott
2008-11-03 17:22 ` Christopher Suckling
@ 2008-11-07 11:25 ` Rick Moynihan
2008-11-07 16:10 ` Jonathan Arkell
1 sibling, 1 reply; 4+ messages in thread
From: Rick Moynihan @ 2008-11-07 11:25 UTC (permalink / raw)
To: Alex Ott; +Cc: emacs-orgmode
Alex Ott wrote:
> Hi all
>
> I wrote small note about show notifications with Growl under Mac OS X.
> This could be useful when using org-mode. Note is could be found on my site
> http://xtalk.msk.su/~ott/en/writings/EmacsMacOSXAndGrowl.html
Thanks for this, this'll prove handy at work. I took the liberty of
simplifying the elisp a little. This version doesn't create a temporary
file, and instead uses a shell HEREDOC.
(defun output-to-growl (msg)
(shell-command (format "osascript <<ENDSCRIPT
tell application \"GrowlHelperApp\"
notify with name \"Emacs Notification\" title \"Emacs alert\" \
description «data utxt%s» as Unicode text \
application name \"Emacs\"
end tell
ENDSCRIPT" (osd-text-to-utf-16-hex msg))))
(defun osd-text-to-utf-16-hex (text)
(let* ((utext (encode-coding-string text 'utf-16))
(ltext (string-to-list utext)))
(apply #'concat
(mapcar (lambda (x) (format "%02x" x)) ltext))))
R.
^ permalink raw reply [flat|nested] 4+ messages in thread
* RE: MacOSX: Notifications with Growl
2008-11-07 11:25 ` Rick Moynihan
@ 2008-11-07 16:10 ` Jonathan Arkell
0 siblings, 0 replies; 4+ messages in thread
From: Jonathan Arkell @ 2008-11-07 16:10 UTC (permalink / raw)
To: emacs-orgmode
[-- Attachment #1: Type: text/plain, Size: 1945 bytes --]
I am chiming in a little late here, but...
Try out Todochiku, which is a notifications package I wrote for emacs: http://www.emacswiki.org/emacs/ToDoChiKu
It works with appt (and thus with org mode) and it is compatible across different notification programs (and OS). It has a customization option todochiku-appts that will set up a growl notifier as your appt-display-function.
Enjoy.
-----Original Message-----
From: emacs-orgmode-bounces+jonathana=criticalmass.com@gnu.org [mailto:emacs-orgmode-bounces+jonathana=criticalmass.com@gnu.org] On Behalf Of Rick Moynihan
Sent: Friday, November 07, 2008 4:26 AM
To: Alex Ott
Cc: emacs-orgmode@gnu.org
Subject: Re: [Orgmode] MacOSX: Notifications with Growl
Alex Ott wrote:
> Hi all
>
> I wrote small note about show notifications with Growl under Mac OS X.
> This could be useful when using org-mode. Note is could be found on my site
> http://xtalk.msk.su/~ott/en/writings/EmacsMacOSXAndGrowl.html
Thanks for this, this'll prove handy at work. I took the liberty of
simplifying the elisp a little. This version doesn't create a temporary
file, and instead uses a shell HEREDOC.
(defun output-to-growl (msg)
(shell-command (format "osascript <<ENDSCRIPT
tell application \"GrowlHelperApp\"
notify with name \"Emacs Notification\" title \"Emacs alert\" \
description «data utxt%s» as Unicode text \
application name \"Emacs\"
end tell
ENDSCRIPT" (osd-text-to-utf-16-hex msg))))
(defun osd-text-to-utf-16-hex (text)
(let* ((utext (encode-coding-string text 'utf-16))
(ltext (string-to-list utext)))
(apply #'concat
(mapcar (lambda (x) (format "%02x" x)) ltext))))
R.
_______________________________________________
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode
[-- Attachment #2: Type: text/plain, Size: 204 bytes --]
_______________________________________________
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2008-11-07 16:33 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-11-03 15:49 MacOSX: Notifications with Growl Alex Ott
2008-11-03 17:22 ` Christopher Suckling
2008-11-07 11:25 ` Rick Moynihan
2008-11-07 16:10 ` Jonathan Arkell
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).