gnu: emacs-exwm: Fix DISPLAY environment variable issue.

* gnu/packages/emacs.scm (emacs-exwm): Set DISPLAY environment variable in
  shell wrapper.
This commit is contained in:
Arun Isaac 2017-05-27 15:20:12 +05:30
parent ba69e8f7ce
commit dc443f5149
No known key found for this signature in database
GPG key ID: 2E25EE8B61802BB3

View file

@ -4587,9 +4587,12 @@ (define-public emacs-exwm
TryExec=~@*~a~@
Type=Application~%" ,name ,synopsis exwm-executable)))
;; Add a shell wrapper to bin
;; Set DISPLAY variable to work around
;; https://github.com/ch11ng/exwm/issues/213
(with-output-to-file exwm-executable
(lambda _
(format #t "#!~a ~@
export DISPLAY=:0 ~@
~a +SI:localuser:$USER ~@
exec ~a --exit-with-session ~a \"$@\" --eval '~s' ~%"
(string-append (assoc-ref inputs "bash") "/bin/sh")