[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: |
Van L |
Subject: |
Re: XQuartz to 25.3.1 netbsd-8.0; emacsclient new frame height has 3-line default |
Date: |
Fri, 5 Oct 2018 00:38:47 +1000 |
> Try something like:
>
> emacsclient -n -c -F "((user-position.t)(height.24))"
The following creates the frame at 24 height as a uniformed color white
rectangle, but shrinks to 3 line height then fills in the details for the
window’s buffer.
┌────
│ #!/bin/sh
│ emacsclient --eval "(make-frame-on-display \"$DISPLAY\" '((user-position . t)
(height . 24)))"
└────
The following behaves similarly.
┌────
│ #!/bin/sh
│ emacsclient --create-frame --alternate-editor=emacs
└────
I call the above scripts as follows. The problem seems peculiar to
25.3.1-netbsd and x11-forwarding.
┌────
│ #!/bin/sh
│ ssh -Y fred.flintstone opt/bin/newframe &
└────