mirror of
https://github.com/emacs-exwm/exwm.git
synced 2024-11-23 13:07:59 +01:00
; Update module commentaries
This commit is contained in:
parent
5516f24d5e
commit
f9f90dcf8b
5 changed files with 10 additions and 13 deletions
|
@ -23,9 +23,9 @@
|
|||
|
||||
;; This module adds X background color setting support to EXWM.
|
||||
|
||||
;; To use this module, load and enable it as follows:
|
||||
;; (require 'exwm-background)
|
||||
;; (exwm-background-enable)
|
||||
;; To use this module, enable it as follows:
|
||||
;;
|
||||
;; (exwm-background-mode 1)
|
||||
;;
|
||||
;; By default, this will apply the theme's background color. However, that
|
||||
;; color can be customized via the `exwm-background-color' setting.
|
||||
|
|
|
@ -30,13 +30,12 @@
|
|||
;; `exwm-randr-workspace-monitor-plist' and `exwm-randr-screen-change-hook'
|
||||
;; as follows:
|
||||
;;
|
||||
;; (require 'exwm-randr)
|
||||
;; (setq exwm-randr-workspace-monitor-plist '(0 "VGA1"))
|
||||
;; (add-hook 'exwm-randr-screen-change-hook
|
||||
;; (lambda ()
|
||||
;; (start-process-shell-command
|
||||
;; "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",
|
||||
;; staying at the left of other workspaces on the output "LVDS1". Please refer
|
||||
|
|
|
@ -24,9 +24,9 @@
|
|||
|
||||
;; This module adds system tray support for EXWM.
|
||||
|
||||
;; To use this module, load and enable it as follows:
|
||||
;; (require 'exwm-systemtray)
|
||||
;; (exwm-systemtray-enable)
|
||||
;; To use this module, enable it as follows:
|
||||
;;
|
||||
;; (exwm-systemtray-mode 1)
|
||||
|
||||
;;; Code:
|
||||
|
||||
|
|
|
@ -41,10 +41,9 @@
|
|||
;; + Only support static event flow, on-demand-synchronous method.
|
||||
;; + 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-enable)
|
||||
;; (exwm-xim-mode 1)
|
||||
;;
|
||||
;; 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
|
||||
|
|
|
@ -26,7 +26,6 @@
|
|||
;;
|
||||
;; This package can be configured as follows:
|
||||
;;
|
||||
;; (require 'exwm-xsettings)
|
||||
;; (setq exwm-xsettings-theme '("Adwaita" . "Adwaita-dark") ;; light/dark
|
||||
;; exwm-xsettings `(("Xft/HintStyle" . "hintslight")
|
||||
;; ("Xft/RGBA" . "rgb")
|
||||
|
@ -37,7 +36,7 @@
|
|||
;; ;; (144 = 1.5 * 96).
|
||||
;; ("Xft/DPI" . ,(* 144 1024))
|
||||
;; ("Xft/Hinting" . 1)))
|
||||
;; (exwm-xsettings-enable)
|
||||
;; (exwm-xsettings-mode 1)
|
||||
;;
|
||||
;; To modify these settings at runtime, customize them with
|
||||
;; `custom-set-variables' or `setopt' (Emacs 29+). E.g., the following will
|
||||
|
|
Loading…
Reference in a new issue