diff options
author | Adrián Medraño Calvo <adrian@medranocalvo.com> | 2018-03-06T00·00+0000 |
---|---|---|
committer | Adrián Medraño Calvo <adrian@medranocalvo.com> | 2018-03-06T00·00+0000 |
commit | cf98e3d921ea55bcd58f0b7b3071d84a9a8fbcd0 (patch) | |
tree | c771009eac83e2181960d9bc15c461843a713151 /exwm-floating.el | |
parent | 587a8cad1db06f2735054ad2dff0d6346093a7be (diff) |
Name all helper windows created by EXWM
* exwm-workspace.el (exwm-workspace--add-frame-as-workspace) (exwm-workspace--init): * exwm-input.el (exwm-input--init): * exwm-floating.el (exwm-floating--set-floating): Name created helper windows with prefix "EXWM".
Diffstat (limited to 'exwm-floating.el')
-rw-r--r-- | exwm-floating.el | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/exwm-floating.el b/exwm-floating.el index 0c8fc6fb234a..6f8f9d8d3c22 100644 --- a/exwm-floating.el +++ b/exwm-floating.el @@ -274,12 +274,11 @@ This is also used by X window containers.") :border-pixel exwm-floating--border-pixel :override-redirect 1 :colormap exwm-floating--border-colormap)) - (exwm--debug - (xcb:+request exwm--connection - (make-instance 'xcb:ewmh:set-_NET_WM_NAME - :window frame-container - :data - (format "floating frame container for 0x%x" id)))) + (xcb:+request exwm--connection + (make-instance 'xcb:ewmh:set-_NET_WM_NAME + :window frame-container + :data + (format "EXWM floating frame container for 0x%x" id))) ;; Map it. (xcb:+request exwm--connection (make-instance 'xcb:MapWindow :window frame-container)) |