emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
From: Haider Rizvi <harizvi@gmail.com>
To: emacs-orgmode@gnu.org
Subject: Re: popup org capture window on linux?
Date: Fri, 31 Jul 2015 12:29:54 -0700	[thread overview]
Message-ID: <m2a8ucm8gd.fsf@thinkhr.lan> (raw)
In-Reply-To: CAOQHXPqcaqz8uNt0paUjAmt7_zyKCAMj7UmppWkN297m-_q+xQ@mail.gmail.com

Xebar Saram <zeltakc@gmail.com> writes:

> Hi. it seems like this :
>
> /usr/bin/emacsclient -c -e '(org-capture)' 

I have the following for similar purposes: 

(defadvice org-capture-finalize (after delete-org-capture-frame activate)  
  "Advise org-capture-finalize to close the frame if it is the org-capture frame"  
  (if (equal "org-capture" (frame-parameter nil 'name))  
      (delete-frame)))  

(defun make-orgcapture-frame ()  
  "Create a new frame and run org-capture."  
  (interactive)  
  (make-frame '((name . "org-capture") (width . 80) (height . 16)
                (top . 400) (left . 300)
                (font . "Consolas-14")
                ))
  (select-frame-by-name "org-capture")  
  (org-capture))

From a shell (or hotkey), you'll need to kick off:
     emacsclient -ne '(make-orgcapture-frame)'



- Haider

  parent reply	other threads:[~2015-07-31 19:30 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-07-31 18:19 popup org capture window on linux? Xebar Saram
2015-07-31 18:42 ` Xebar Saram
2015-07-31 18:50   ` Ken Mankoff
2015-07-31 19:29   ` Haider Rizvi [this message]
2015-08-01  2:51   ` Nick Dokos
2015-07-31 19:32 ` Josiah Schwab

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.orgmode.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=m2a8ucm8gd.fsf@thinkhr.lan \
    --to=harizvi@gmail.com \
    --cc=emacs-orgmode@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).