[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/exwm 5acb8bea8a 2/2: New customization group exwm-xsett
From: |
ELPA Syncer |
Subject: |
[elpa] externals/exwm 5acb8bea8a 2/2: New customization group exwm-xsettings |
Date: |
Sat, 13 Jan 2024 19:11:08 -0500 (EST) |
branch: externals/exwm
commit 5acb8bea8a4c1e01e05c29eedbd85360a0e27309
Author: Daniel Mendler <mail@daniel-mendler.de>
Commit: Daniel Mendler <mail@daniel-mendler.de>
New customization group exwm-xsettings
* exwm-xsettings.el (exwm-xsettings): New customization group.
---
exwm-xsettings.el | 11 ++++++-----
1 file changed, 6 insertions(+), 5 deletions(-)
diff --git a/exwm-xsettings.el b/exwm-xsettings.el
index 4eac557b9a..42b781ad84 100644
--- a/exwm-xsettings.el
+++ b/exwm-xsettings.el
@@ -40,7 +40,7 @@
;; (exwm-xsettings-enable)
;;
;; To modify these settings at runtime, customize them with
-;; `custom-set-variables' or `setopt' (Emacs 29+). E.g., the following will
+;; `custom-set-variables' or `setopt' (Emacs 29+). E.g., the following will
;; immediately change the icon theme to "Papirus" at runtime, even in running
;; applications:
;;
@@ -69,11 +69,14 @@ SYMBOL is the setting being updated and VALUE is the new
value."
(set-default-toplevel-value symbol value)
(exwm-xsettings--update-settings))
+(defgroup exwm-xsettings nil
+ "XSETTINGS."
+ :group 'exwm)
+
(defcustom exwm-xsettings nil
- "Custom XSETTINGS.
+ "Alist of custom XSETTINGS.
These settings take precedence over `exwm-xsettings-theme' and
`exwm-xsettings-icon-theme'."
- :group 'exwm
:type '(alist :key-type (string :tag "Name")
:value-type (choice :tag "Value"
(string :tag "String")
@@ -101,7 +104,6 @@ These settings take precedence over `exwm-xsettings-theme'
and
(defcustom exwm-xsettings-theme nil
"The system-wide theme."
- :group 'exwm
:type '(choice (string :tag "Theme")
(cons (string :tag "Light Theme")
(string :tag "Dark Theme")))
@@ -110,7 +112,6 @@ These settings take precedence over `exwm-xsettings-theme'
and
(defcustom exwm-xsettings-icon-theme nil
"The system-wide icon theme."
- :group 'exwm
:type '(choice (string :tag "Icon Theme")
(cons (string :tag "Light Icon Theme")
(string :tag "Dark Icon Theme")))