diff options
author | Chris Feng <chris.w.feng@gmail.com> | 2015-09-19T09·52+0800 |
---|---|---|
committer | Chris Feng <chris.w.feng@gmail.com> | 2015-09-19T09·52+0800 |
commit | 81478de9e6676ebe3c67d4673a7d4e56e7ad2265 (patch) | |
tree | 2004e3093ff684bcf521707c1162b4a027071049 | |
parent | b35430429e96ce6b2bb46a4d155d86acdba8d768 (diff) |
Manage non-floating windows without decorations
* exwm-manage.el (exwm-manage--manage-window): Should manage non-floating windows without decorations.
-rw-r--r-- | exwm-manage.el | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/exwm-manage.el b/exwm-manage.el index b2eda4b8fc6f..e7682cda88e1 100644 --- a/exwm-manage.el +++ b/exwm-manage.el @@ -79,6 +79,8 @@ corresponding buffer.") (setq exwm--id id) (exwm--update-window-type id) (exwm--update-class id) + (exwm--update-transient-for id) + (exwm--update-normal-hints id) (exwm-manage--update-geometry id) (exwm-manage--update-mwm-hints id) ;; No need to manage (please check OverrideRedirect outside) @@ -93,7 +95,13 @@ corresponding buffer.") (and exwm--mwm-hints (/= 0 (logand (elt exwm--mwm-hints 0) ;MotifWmHints.flags 2)) ;MWM_HINTS_DECORATIONS - (= 0 (elt exwm--mwm-hints 2)))) ;MotifWmHints.decorations + (= 0 (elt exwm--mwm-hints 2)) ;MotifWmHints.decorations + ;; Floating windows only + (or exwm-transient-for exwm--fixed-size + (memq xcb:Atom:_NET_WM_WINDOW_TYPE_UTILITY + exwm-window-type) + (memq xcb:Atom:_NET_WM_WINDOW_TYPE_DIALOG + exwm-window-type)))) (exwm--log "No need to manage #x%x" id) ;; Remove all events (xcb:+request-checked+request-check exwm--connection @@ -153,8 +161,6 @@ corresponding buffer.") :data (vconcat (mapcar #'car exwm--id-buffer-alist)))) (xcb:flush exwm--connection) (exwm--update-title id) - (exwm--update-transient-for id) - (exwm--update-normal-hints id) (exwm--update-hints id) (exwm--update-protocols id) (exwm--update-state id) |