[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: XQuartz to 25.3.1 netbsd-8.0; emacsclient new frame height has 3-lin
From: |
HASM |
Subject: |
Re: XQuartz to 25.3.1 netbsd-8.0; emacsclient new frame height has 3-line default |
Date: |
Thu, 04 Oct 2018 05:09:01 -0700 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/26.1 (gnu/linux) |
Van L <van@scratch.space> writes:
> I’d like to have the emacsclient new frame to have height 24 or 40.
> This is the script I use after `ssh -Y’ to target host.
> #!/bin/sh
> emacsclient --eval "(make-frame-on-display \"$DISPLAY\" '((height . 24)))"
I have a small variation on this, though for local, not over ssh, and
I'm on emacs 26.1.
Try something like:
emacsclient -n -c -F "((user-position.t)(height.24))"
You may need to add "-d $DISPLAY" though emacsclient should honor the
DISPLAY environment variable.
You may also add (width.XX) to the -F parameter alist, if you don't like
the default.
-- HASM