; Update module commentaries

This commit is contained in:
Daniel Mendler 2024-06-04 16:49:32 +02:00
parent 5516f24d5e
commit f9f90dcf8b
No known key found for this signature in database
GPG key ID: D88ADB2A2693CA43
5 changed files with 10 additions and 13 deletions

View file

@ -23,9 +23,9 @@
;; This module adds X background color setting support to EXWM. ;; This module adds X background color setting support to EXWM.
;; To use this module, load and enable it as follows: ;; To use this module, enable it as follows:
;; (require 'exwm-background) ;;
;; (exwm-background-enable) ;; (exwm-background-mode 1)
;; ;;
;; By default, this will apply the theme's background color. However, that ;; By default, this will apply the theme's background color. However, that
;; color can be customized via the `exwm-background-color' setting. ;; color can be customized via the `exwm-background-color' setting.

View file

@ -30,13 +30,12 @@
;; `exwm-randr-workspace-monitor-plist' and `exwm-randr-screen-change-hook' ;; `exwm-randr-workspace-monitor-plist' and `exwm-randr-screen-change-hook'
;; as follows: ;; as follows:
;; ;;
;; (require 'exwm-randr)
;; (setq exwm-randr-workspace-monitor-plist '(0 "VGA1")) ;; (setq exwm-randr-workspace-monitor-plist '(0 "VGA1"))
;; (add-hook 'exwm-randr-screen-change-hook ;; (add-hook 'exwm-randr-screen-change-hook
;; (lambda () ;; (lambda ()
;; (start-process-shell-command ;; (start-process-shell-command
;; "xrandr" nil "xrandr --output VGA1 --left-of LVDS1 --auto"))) ;; "xrandr" nil "xrandr --output VGA1 --left-of LVDS1 --auto")))
;; (exwm-randr-enable) ;; (exwm-randr-mode 1)
;; ;;
;; With above lines, workspace 0 should be assigned to the output named "VGA1", ;; With above lines, workspace 0 should be assigned to the output named "VGA1",
;; staying at the left of other workspaces on the output "LVDS1". Please refer ;; staying at the left of other workspaces on the output "LVDS1". Please refer

View file

@ -24,9 +24,9 @@
;; This module adds system tray support for EXWM. ;; This module adds system tray support for EXWM.
;; To use this module, load and enable it as follows: ;; To use this module, enable it as follows:
;; (require 'exwm-systemtray) ;;
;; (exwm-systemtray-enable) ;; (exwm-systemtray-mode 1)
;;; Code: ;;; Code:

View file

@ -41,10 +41,9 @@
;; + Only support static event flow, on-demand-synchronous method. ;; + Only support static event flow, on-demand-synchronous method.
;; + Only "root-window" input style is supported. ;; + Only "root-window" input style is supported.
;; To use this module, first load and enable it as follows: ;; To use this module, enable it as follows:
;; ;;
;; (require 'exwm-xim) ;; (exwm-xim-mode 1)
;; (exwm-xim-enable)
;; ;;
;; A keybinding for `toggle-input-method' is probably required to turn on & ;; A keybinding for `toggle-input-method' is probably required to turn on &
;; off an input method (default to `default-input-method'). It's bound to ;; off an input method (default to `default-input-method'). It's bound to

View file

@ -26,7 +26,6 @@
;; ;;
;; This package can be configured as follows: ;; This package can be configured as follows:
;; ;;
;; (require 'exwm-xsettings)
;; (setq exwm-xsettings-theme '("Adwaita" . "Adwaita-dark") ;; light/dark ;; (setq exwm-xsettings-theme '("Adwaita" . "Adwaita-dark") ;; light/dark
;; exwm-xsettings `(("Xft/HintStyle" . "hintslight") ;; exwm-xsettings `(("Xft/HintStyle" . "hintslight")
;; ("Xft/RGBA" . "rgb") ;; ("Xft/RGBA" . "rgb")
@ -37,7 +36,7 @@
;; ;; (144 = 1.5 * 96). ;; ;; (144 = 1.5 * 96).
;; ("Xft/DPI" . ,(* 144 1024)) ;; ("Xft/DPI" . ,(* 144 1024))
;; ("Xft/Hinting" . 1))) ;; ("Xft/Hinting" . 1)))
;; (exwm-xsettings-enable) ;; (exwm-xsettings-mode 1)
;; ;;
;; To modify these settings at runtime, customize them with ;; 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