#!/bin/zsh # my-init.org [[id:../.emacs.d/1c3c73e8-185e-44bf-9234-51c7dae10d8b][create-remote-frame]] if [ $# -eq 0 ] ; then echo "Usage ${0} username@host" exit fi ssh ${1} -f emacsclient --eval '"(make-frame-on-display \"$DISPLAY\")"' # End my-init.org [[id:../.emacs.d/1c3c73e8-185e-44bf-9234-51c7dae10d8b][create-remote-frame]]