|
From: | Stefan Monnier |
Subject: | Re: [elpa] externals/exwm 21351f6 2/2: Be more precise when choosing the init hook |
Date: | Wed, 08 Nov 2017 13:05:23 -0500 |
User-agent: | Gnus/5.13 (Gnus v5.13) Emacs/27.0.50 (gnu/linux) |
> + (if (display-graphic-p) > + ;; emacs. > + (add-hook 'window-setup-hook #'exwm-init t) > + ;; emacsclient. > + (add-hook 'after-make-frame-functions #'exwm-init t)) AKA (add-hook (if (display-graphic-p) 'window-setup-hook ;; emacs 'after-make-frame-functions) ;; emacsclient #'exwm-init t) But maybe you should check `daemonp` instead? Stefan
[Prev in Thread] | Current Thread | [Next in Thread] |