From 6320e9e1b6721eaa8d2edfa7cdbf844844f47c0d Mon Sep 17 00:00:00 2001 From: Jeremy Dormitzer Date: Sun, 5 Jan 2020 12:45:14 -0500 Subject: [PATCH] Make StumpWM frame focus follow mouse click --- stumpwm/.stumpwm.d/init.lisp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/stumpwm/.stumpwm.d/init.lisp b/stumpwm/.stumpwm.d/init.lisp index 5137c5e..1dcf185 100644 --- a/stumpwm/.stumpwm.d/init.lisp +++ b/stumpwm/.stumpwm.d/init.lisp @@ -7,6 +7,9 @@ :style swank:*communication-style* :dont-close t) +;; StumpWM configs +(setq *mouse-focus-policy* :click) + ;; Commands (defcommand firefox () () (run-or-raise "firefox" '(:class "firefox")))