"Robert P. Goldman" <rpgold...@sift.info> writes: > Does anyone have a workflow for the Alfred Mac app launcher that will > interact with org-capture?
If Alfred can trigger an Applescript, I use the following with Quicksilver: Applescript: property eclient : "/Applications/Emacs.app/Contents/MacOS/bin/emacsclient -n -e " do shell script eclient & "'(make-orgcapture-frame)'" elisp in init.el or ...: (defun make-orgcapture-frame () "Create a new frame and run org-capture." (interactive) (make-frame '((name . "remember") (width . 80) (height . 16) (top . 400) (left . 300) (font . "-apple-Monaco-medium-normal-normal-*-13-*-*-*-m-0-iso10646-1") )) (select-frame-by-name "remember") (org-capture)) Regards, -- Haider