13 lines
391 B
Bash
Executable File
13 lines
391 B
Bash
Executable File
#!/usr/bin/env zsh
|
|
|
|
setopt rcquotes
|
|
|
|
printf '%s' "${WAYLAND_DISPLAY}" |
|
|
/usr/bin/emacs --batch --insert=/dev/fd/0 \
|
|
--eval \
|
|
'(let ((wayland-display (buffer-string)))
|
|
(require ''server)
|
|
(server-eval-at
|
|
"server"
|
|
`(setenv "WAYLAND_DISPLAY" ,wayland-display)))'
|