diff options
-rw-r--r-- | .emacs.d/init.el | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/.emacs.d/init.el b/.emacs.d/init.el index d6c94f8..f7afe3c 100644 --- a/.emacs.d/init.el +++ b/.emacs.d/init.el @@ -711,6 +711,23 @@ around if needed." ;; escape ([?\C-g] . [escape])))) +(use-feature exwm-manage + :demand + :after exwm + :hook + (exwm-manage-finish . (lambda () + (when exwm-class-name + (cond + ((string= exwm-class-name "URxvt") + (exwm-input-set-local-simulation-keys + nil)) + ((string= exwm-class-name "Abrowser") + (exwm-input-set-local-simulation-keys + `(,@exwm-input-simulation-keys + ([?\C-\S-d] . [?\C-d]) + ([?\C-\S-w] . [?\C-w]) + ([?\C-\S-q] . [?\C-q]))))))))) + (use-feature exwm-randr :demand :after exwm |