mirror of
https://github.com/emacs-exwm/exwm.git
synced 2024-11-23 21:17:59 +01:00
New customization group exwm-xsettings
* exwm-xsettings.el (exwm-xsettings): New customization group.
This commit is contained in:
parent
c033fc00f3
commit
5acb8bea8a
1 changed files with 6 additions and 5 deletions
|
@ -69,11 +69,14 @@ SYMBOL is the setting being updated and VALUE is the new value."
|
||||||
(set-default-toplevel-value symbol value)
|
(set-default-toplevel-value symbol value)
|
||||||
(exwm-xsettings--update-settings))
|
(exwm-xsettings--update-settings))
|
||||||
|
|
||||||
|
(defgroup exwm-xsettings nil
|
||||||
|
"XSETTINGS."
|
||||||
|
:group 'exwm)
|
||||||
|
|
||||||
(defcustom exwm-xsettings nil
|
(defcustom exwm-xsettings nil
|
||||||
"Custom XSETTINGS.
|
"Alist of custom XSETTINGS.
|
||||||
These settings take precedence over `exwm-xsettings-theme' and
|
These settings take precedence over `exwm-xsettings-theme' and
|
||||||
`exwm-xsettings-icon-theme'."
|
`exwm-xsettings-icon-theme'."
|
||||||
:group 'exwm
|
|
||||||
:type '(alist :key-type (string :tag "Name")
|
:type '(alist :key-type (string :tag "Name")
|
||||||
:value-type (choice :tag "Value"
|
:value-type (choice :tag "Value"
|
||||||
(string :tag "String")
|
(string :tag "String")
|
||||||
|
@ -101,7 +104,6 @@ These settings take precedence over `exwm-xsettings-theme' and
|
||||||
|
|
||||||
(defcustom exwm-xsettings-theme nil
|
(defcustom exwm-xsettings-theme nil
|
||||||
"The system-wide theme."
|
"The system-wide theme."
|
||||||
:group 'exwm
|
|
||||||
:type '(choice (string :tag "Theme")
|
:type '(choice (string :tag "Theme")
|
||||||
(cons (string :tag "Light Theme")
|
(cons (string :tag "Light Theme")
|
||||||
(string :tag "Dark Theme")))
|
(string :tag "Dark Theme")))
|
||||||
|
@ -110,7 +112,6 @@ These settings take precedence over `exwm-xsettings-theme' and
|
||||||
|
|
||||||
(defcustom exwm-xsettings-icon-theme nil
|
(defcustom exwm-xsettings-icon-theme nil
|
||||||
"The system-wide icon theme."
|
"The system-wide icon theme."
|
||||||
:group 'exwm
|
|
||||||
:type '(choice (string :tag "Icon Theme")
|
:type '(choice (string :tag "Icon Theme")
|
||||||
(cons (string :tag "Light Icon Theme")
|
(cons (string :tag "Light Icon Theme")
|
||||||
(string :tag "Dark Icon Theme")))
|
(string :tag "Dark Icon Theme")))
|
||||||
|
|
Loading…
Reference in a new issue