Ich habe den folgenden Elisp-Code in meiner Emacs-Konfiguration, der mein Touchpad deaktiviert, sodass es mich beim Schreiben nicht stört.
;; disable touchpad when on emacs
(defun turn-off-mouse (&optional frame)
(interactive)
(call-process-shell-command "xinput --disable bcm5974"
nil "*Shell command output*" t))
(defun turn-on-mouse (&optional frame)
(interactive)
(call-process-shell-command "xinput --enable bcm5974"
nil "*Shell command output*" t))
(add-hook 'focus-in-hook #'turn-off-mouse)
(add-hook 'focus-out-hook #'turn-on-mouse)
(add-hook 'delete-frame-functions #'turn-on-mouse)
(provide 'setup-xinput)
Das funktioniert gut; Das Problem ist nur beim Beenden von Emacs.
Wenn ich Emacs auf Emacs beende, bleibt mein Touchpad deaktiviert. Also muss ich ein neues Terminal mit der Tastatur öffnen und ausführen xinput --enable bcm5974
.
Gibt es eine Problemumgehung dafür? Wie kann ich Emacs beenden und mein Touchpad wieder aktivieren?