about summary refs log tree commit diff
path: root/exwm-manage.el
diff options
context:
space:
mode:
authorChris Feng <chris.w.feng@gmail.com>2019-04-14T00·00+0000
committerChris Feng <chris.w.feng@gmail.com>2019-04-14T00·00+0000
commit4ac0d6c1fd00ffd9229ef2d5fd1c63ee6151ed2d (patch)
tree248989edc85395c16670ec9767bb00a1a2d92bc9 /exwm-manage.el
parentbd99d8cf7fe3be24d370f8a99332f33c4106f510 (diff)
Clarify the usage of `exwm-manage-configurations'
Diffstat (limited to 'exwm-manage.el')
-rw-r--r--exwm-manage.el24
1 files changed, 23 insertions, 1 deletions
diff --git a/exwm-manage.el b/exwm-manage.el
index 8f8f6e44b8..6f89fff4f0 100644
--- a/exwm-manage.el
+++ b/exwm-manage.el
@@ -48,7 +48,29 @@ You can still make the X windows floating afterwards."
   :type 'integer)
 
 (defcustom exwm-manage-configurations nil
-  "Per-application configurations."
+  "Per-application configurations.
+
+Configuration options allow to override various default behaviors of EXWM
+and only take effect when they are present.  Note for certain options
+specifying nil is not exactly the same as leaving them out.  Currently
+possible choices:
+* floating: Force floating (non-nil) or tiling (nil) on startup.
+* x/y/width/height: Override the initial geometry (floating X window only).
+* border-width: Override the border width (only visible when floating).
+* fullscreen: Force full screen (non-nil) on startup.
+* floating-mode-line: `mode-line-format' used when floating.
+* tiling-mode-line: `mode-line-format' used when tiling.
+* floating-header-line: `header-line-format' used when floating.
+* tiling-header-line: `header-line-format' used when tiling.
+* char-mode: Force char-mode (non-nil) on startup.
+* prefix-keys: `exwm-input-prefix-keys' local to this X window.
+* simulation-keys: `exwm-input-simulation-keys' local to this X window.
+* workspace: The initial workspace.
+* managed: Force to manage (non-nil) or not manage (nil) the X window.
+
+For each X window managed for the first time, matching criteria (sexps) are
+evaluated sequentially and the first configuration with a non-nil matching
+criterion would be applied."
   :type '(alist :key-type (sexp :tag "Matching criterion" nil)
                 :value-type
                 (plist :tag "Configurations"