2015-08-03 14:26:53 +02:00
|
|
|
|
;;; exwm-randr.el --- RandR Module for EXWM -*- lexical-binding: t -*-
|
|
|
|
|
|
2017-12-31 13:49:37 +01:00
|
|
|
|
;; Copyright (C) 2015-2018 Free Software Foundation, Inc.
|
2015-08-03 14:26:53 +02:00
|
|
|
|
|
|
|
|
|
;; Author: Chris Feng <chris.w.feng@gmail.com>
|
|
|
|
|
|
2015-09-04 03:09:59 +02:00
|
|
|
|
;; This file is part of GNU Emacs.
|
2015-08-03 14:26:53 +02:00
|
|
|
|
|
2015-09-04 03:09:59 +02:00
|
|
|
|
;; GNU Emacs is free software: you can redistribute it and/or modify
|
2015-08-03 14:26:53 +02:00
|
|
|
|
;; it under the terms of the GNU General Public License as published by
|
|
|
|
|
;; the Free Software Foundation, either version 3 of the License, or
|
|
|
|
|
;; (at your option) any later version.
|
|
|
|
|
|
2015-09-04 03:09:59 +02:00
|
|
|
|
;; GNU Emacs is distributed in the hope that it will be useful,
|
2015-08-03 14:26:53 +02:00
|
|
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
;; GNU General Public License for more details.
|
|
|
|
|
|
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
2015-09-04 03:09:59 +02:00
|
|
|
|
;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
|
2015-08-03 14:26:53 +02:00
|
|
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
|
|
2017-02-05 10:50:52 +01:00
|
|
|
|
;; This module adds RandR support for EXWM. Currently it requires external
|
|
|
|
|
;; tools such as xrandr(1) to properly configure RandR first. This
|
|
|
|
|
;; dependency may be removed in the future, but more work is needed before
|
|
|
|
|
;; that.
|
2015-08-03 14:26:53 +02:00
|
|
|
|
|
2015-11-01 03:54:20 +01:00
|
|
|
|
;; To use this module, load, enable it and configure
|
2018-11-04 01:00:00 +01:00
|
|
|
|
;; `exwm-randr-workspace-monitor-plist' and `exwm-randr-screen-change-hook'
|
2015-11-01 03:54:20 +01:00
|
|
|
|
;; as follows:
|
|
|
|
|
;;
|
2015-08-13 06:02:44 +02:00
|
|
|
|
;; (require 'exwm-randr)
|
2018-11-04 01:00:00 +01:00
|
|
|
|
;; (setq exwm-randr-workspace-monitor-plist '(0 "VGA1"))
|
2015-11-01 03:54:20 +01:00
|
|
|
|
;; (add-hook 'exwm-randr-screen-change-hook
|
|
|
|
|
;; (lambda ()
|
|
|
|
|
;; (start-process-shell-command
|
|
|
|
|
;; "xrandr" nil "xrandr --output VGA1 --left-of LVDS1 --auto")))
|
2015-08-13 06:02:44 +02:00
|
|
|
|
;; (exwm-randr-enable)
|
2015-11-01 03:54:20 +01:00
|
|
|
|
;;
|
2015-08-03 14:26:53 +02:00
|
|
|
|
;; With above lines, workspace 0 should be assigned to the output named "VGA1",
|
2015-11-01 03:54:20 +01:00
|
|
|
|
;; staying at the left of other workspaces on the output "LVDS1". Please refer
|
|
|
|
|
;; to xrandr(1) for the configuration of RandR.
|
2015-08-03 14:26:53 +02:00
|
|
|
|
|
|
|
|
|
;; References:
|
|
|
|
|
;; + RandR (http://www.x.org/archive/X11R7.7/doc/randrproto/randrproto.txt)
|
|
|
|
|
|
|
|
|
|
;;; Code:
|
|
|
|
|
|
|
|
|
|
(require 'xcb-randr)
|
2015-09-04 03:09:59 +02:00
|
|
|
|
(require 'exwm-core)
|
2015-08-03 14:26:53 +02:00
|
|
|
|
|
2018-02-18 17:04:27 +01:00
|
|
|
|
(defgroup exwm-randr nil
|
|
|
|
|
"RandR."
|
|
|
|
|
:version "25.3"
|
|
|
|
|
:group 'exwm)
|
2015-08-03 14:26:53 +02:00
|
|
|
|
|
2018-02-18 17:04:27 +01:00
|
|
|
|
(defcustom exwm-randr-refresh-hook nil
|
|
|
|
|
"Normal hook run when the RandR module just refreshed."
|
|
|
|
|
:type 'hook)
|
|
|
|
|
|
|
|
|
|
(defcustom exwm-randr-screen-change-hook nil
|
|
|
|
|
"Normal hook run when screen changes."
|
|
|
|
|
:type 'hook)
|
|
|
|
|
|
2018-11-04 01:00:00 +01:00
|
|
|
|
(defcustom exwm-randr-workspace-monitor-plist nil
|
|
|
|
|
"Plist mapping workspaces to monitors.
|
2018-02-18 17:04:27 +01:00
|
|
|
|
|
2018-11-04 01:00:00 +01:00
|
|
|
|
In RandR 1.5 a monitor is a rectangle region decoupled from the physical
|
|
|
|
|
size of screens, and can be identified with `xrandr --listmonitors' (name of
|
|
|
|
|
the primary monitor is prefixed with an `*'). When no monitor is created it
|
|
|
|
|
automatically fallback to RandR 1.2 output which represents the physical
|
|
|
|
|
screen size. RandR 1.5 monitors can be created with `xrandr --setmonitor'.
|
|
|
|
|
For example, to split an output (`LVDS-1') of size 1280x800 into two
|
|
|
|
|
side-by-side monitors one could invoke (the digits after `/' are size in mm)
|
2018-02-18 17:04:27 +01:00
|
|
|
|
|
2018-11-04 01:00:00 +01:00
|
|
|
|
xrandr --setmonitor *LVDS-1-L 640/135x800/163+0+0 LVDS-1
|
|
|
|
|
xrandr --setmonitor LVDS-1-R 640/135x800/163+640+0 none
|
2018-02-18 17:04:27 +01:00
|
|
|
|
|
2018-11-04 01:00:00 +01:00
|
|
|
|
If a monitor is not active, the workspaces mapped to it are displayed on the
|
|
|
|
|
primary monitor until it becomes active (if ever). Unspecified workspaces
|
|
|
|
|
are all mapped to the primary monitor. For example, with the following
|
|
|
|
|
setting workspace other than 1 and 3 would always be displayed on the
|
|
|
|
|
primary monitor where workspace 1 and 3 would be displayed on their
|
|
|
|
|
corresponding monitors whenever the monitors are active.
|
|
|
|
|
|
|
|
|
|
\\='(1 \"HDMI-1\" 3 \"DP-1\")"
|
2018-02-18 17:04:27 +01:00
|
|
|
|
:type '(plist :key-type integer :value-type string))
|
2016-02-19 10:12:43 +01:00
|
|
|
|
|
2018-11-04 01:00:00 +01:00
|
|
|
|
(with-no-warnings
|
|
|
|
|
(define-obsolete-variable-alias 'exwm-randr-workspace-output-plist
|
|
|
|
|
'exwm-randr-workspace-monitor-plist "27.1"))
|
|
|
|
|
|
2018-11-18 01:00:00 +01:00
|
|
|
|
(defvar exwm-randr--last-timestamp 0 "Used for debouncing events.")
|
|
|
|
|
|
2016-07-12 12:35:51 +02:00
|
|
|
|
(defvar exwm-workspace--fullscreen-frame-count)
|
2016-02-19 10:12:43 +01:00
|
|
|
|
(defvar exwm-workspace--list)
|
2018-12-03 17:25:11 +01:00
|
|
|
|
(defvar exwm-randr--prev-screen-change-seqnum nil
|
|
|
|
|
"The most recent ScreenChangeNotify sequence number.")
|
2016-07-17 14:00:00 +02:00
|
|
|
|
(declare-function exwm-workspace--count "exwm-workspace.el")
|
2018-02-22 15:21:54 +01:00
|
|
|
|
(declare-function exwm-workspace--set-active "exwm-workspace.el"
|
|
|
|
|
(frame active))
|
2018-02-18 17:04:27 +01:00
|
|
|
|
(declare-function exwm-workspace--set-desktop-geometry "exwm-workspace.el" ())
|
2016-07-16 08:34:57 +02:00
|
|
|
|
(declare-function exwm-workspace--set-fullscreen "exwm-workspace.el" (frame))
|
2016-07-21 06:48:12 +02:00
|
|
|
|
(declare-function exwm-workspace--show-minibuffer "exwm-workspace.el" ())
|
2018-02-18 17:04:27 +01:00
|
|
|
|
(declare-function exwm-workspace--update-workareas "exwm-workspace.el" ())
|
2016-02-19 10:12:43 +01:00
|
|
|
|
|
2018-11-04 01:00:00 +01:00
|
|
|
|
(defun exwm-randr--get-monitors ()
|
|
|
|
|
"Get RandR monitors."
|
2018-11-18 01:00:00 +01:00
|
|
|
|
(exwm--log)
|
2018-11-04 01:00:00 +01:00
|
|
|
|
(let (monitor-name geometry monitor-plist primary-monitor)
|
2018-11-18 01:00:00 +01:00
|
|
|
|
(with-slots (timestamp monitors)
|
2018-11-04 01:00:00 +01:00
|
|
|
|
(xcb:+request-unchecked+reply exwm--connection
|
|
|
|
|
(make-instance 'xcb:randr:GetMonitors
|
|
|
|
|
:window exwm--root
|
|
|
|
|
:get-active 1))
|
2018-11-18 01:00:00 +01:00
|
|
|
|
(when (> timestamp exwm-randr--last-timestamp)
|
|
|
|
|
(setq exwm-randr--last-timestamp timestamp))
|
2018-11-04 01:00:00 +01:00
|
|
|
|
(dolist (monitor monitors)
|
|
|
|
|
(with-slots (name primary x y width height) monitor
|
|
|
|
|
(setq monitor-name (x-get-atom-name name)
|
|
|
|
|
geometry (make-instance 'xcb:RECTANGLE
|
|
|
|
|
:x x
|
|
|
|
|
:y y
|
|
|
|
|
:width width
|
|
|
|
|
:height height)
|
|
|
|
|
monitor-plist (plist-put monitor-plist monitor-name geometry))
|
2018-12-02 01:00:00 +01:00
|
|
|
|
(exwm--log "%s: %sx%s+%s+%s" monitor-name x y width height)
|
2018-11-18 01:00:00 +01:00
|
|
|
|
;; Save primary monitor when available (fallback to the first one).
|
|
|
|
|
(when (or (/= 0 primary)
|
|
|
|
|
(not primary-monitor))
|
2018-11-04 01:00:00 +01:00
|
|
|
|
(setq primary-monitor monitor-name)))))
|
|
|
|
|
(exwm--log "Primary monitor: %s" primary-monitor)
|
|
|
|
|
(list primary-monitor monitor-plist)))
|
|
|
|
|
|
2018-11-11 01:00:00 +01:00
|
|
|
|
;;;###autoload
|
|
|
|
|
(defun exwm-randr-refresh ()
|
2015-08-03 14:26:53 +02:00
|
|
|
|
"Refresh workspaces according to the updated RandR info."
|
2018-11-11 01:00:00 +01:00
|
|
|
|
(interactive)
|
2018-11-18 01:00:00 +01:00
|
|
|
|
(exwm--log)
|
2018-11-04 01:00:00 +01:00
|
|
|
|
(let* ((result (exwm-randr--get-monitors))
|
|
|
|
|
(primary-monitor (elt result 0))
|
|
|
|
|
(monitor-plist (elt result 1))
|
|
|
|
|
container-monitor-alist container-frame-alist)
|
|
|
|
|
(when (and primary-monitor monitor-plist)
|
2016-07-16 08:34:57 +02:00
|
|
|
|
(when exwm-workspace--fullscreen-frame-count
|
|
|
|
|
;; Not all workspaces are fullscreen; reset this counter.
|
|
|
|
|
(setq exwm-workspace--fullscreen-frame-count 0))
|
2016-07-17 14:00:00 +02:00
|
|
|
|
(dotimes (i (exwm-workspace--count))
|
2018-11-04 01:00:00 +01:00
|
|
|
|
(let* ((monitor (plist-get exwm-randr-workspace-monitor-plist i))
|
|
|
|
|
(geometry (lax-plist-get monitor-plist monitor))
|
2018-02-21 17:31:57 +01:00
|
|
|
|
(frame (elt exwm-workspace--list i))
|
|
|
|
|
(container (frame-parameter frame 'exwm-container)))
|
2016-02-07 03:22:33 +01:00
|
|
|
|
(unless geometry
|
2018-11-04 01:00:00 +01:00
|
|
|
|
(setq monitor primary-monitor
|
|
|
|
|
geometry (lax-plist-get monitor-plist primary-monitor)))
|
|
|
|
|
(setq container-monitor-alist (nconc
|
|
|
|
|
`((,container . ,(intern monitor)))
|
|
|
|
|
container-monitor-alist)
|
2018-02-21 17:31:57 +01:00
|
|
|
|
container-frame-alist (nconc `((,container . ,frame))
|
|
|
|
|
container-frame-alist))
|
2018-11-04 01:00:00 +01:00
|
|
|
|
(set-frame-parameter frame 'exwm-randr-monitor monitor)
|
2016-07-16 08:34:57 +02:00
|
|
|
|
(set-frame-parameter frame 'exwm-geometry geometry)))
|
2018-03-09 17:12:47 +01:00
|
|
|
|
;; Update workareas.
|
|
|
|
|
(exwm-workspace--update-workareas)
|
|
|
|
|
;; Resize workspace.
|
|
|
|
|
(dolist (f exwm-workspace--list)
|
|
|
|
|
(exwm-workspace--set-fullscreen f))
|
|
|
|
|
(xcb:flush exwm--connection)
|
|
|
|
|
;; Raise the minibuffer if it's active.
|
|
|
|
|
(when (and (active-minibuffer-window)
|
|
|
|
|
(exwm-workspace--minibuffer-own-frame-p))
|
|
|
|
|
(exwm-workspace--show-minibuffer))
|
|
|
|
|
;; Set _NET_DESKTOP_GEOMETRY.
|
|
|
|
|
(exwm-workspace--set-desktop-geometry)
|
2018-02-22 15:21:54 +01:00
|
|
|
|
;; Update active/inactive workspaces.
|
|
|
|
|
(dolist (w exwm-workspace--list)
|
|
|
|
|
(exwm-workspace--set-active w nil))
|
2018-11-04 01:00:00 +01:00
|
|
|
|
;; Mark the workspace on the top of each monitor as active.
|
2018-02-21 17:31:57 +01:00
|
|
|
|
(dolist (xwin
|
|
|
|
|
(reverse
|
|
|
|
|
(slot-value (xcb:+request-unchecked+reply exwm--connection
|
|
|
|
|
(make-instance 'xcb:QueryTree
|
|
|
|
|
:window exwm--root))
|
|
|
|
|
'children)))
|
2018-11-04 01:00:00 +01:00
|
|
|
|
(let ((monitor (cdr (assq xwin container-monitor-alist))))
|
|
|
|
|
(when monitor
|
|
|
|
|
(setq container-monitor-alist
|
|
|
|
|
(rassq-delete-all monitor container-monitor-alist))
|
2018-02-22 15:21:54 +01:00
|
|
|
|
(exwm-workspace--set-active (cdr (assq xwin container-frame-alist))
|
|
|
|
|
t))))
|
2016-02-19 10:12:43 +01:00
|
|
|
|
(xcb:flush exwm--connection)
|
|
|
|
|
(run-hooks 'exwm-randr-refresh-hook))))
|
2015-08-03 14:26:53 +02:00
|
|
|
|
|
2018-11-11 01:00:00 +01:00
|
|
|
|
(define-obsolete-function-alias 'exwm-randr--refresh #'exwm-randr-refresh
|
|
|
|
|
"27.1")
|
|
|
|
|
|
2018-12-03 17:25:11 +01:00
|
|
|
|
(defun exwm-randr--on-ScreenChangeNotify (data _synthetic)
|
2018-11-18 01:00:00 +01:00
|
|
|
|
"Handle `ScreenChangeNotify' event.
|
|
|
|
|
|
|
|
|
|
Run `exwm-randr-screen-change-hook' (usually user scripts to configure RandR)."
|
|
|
|
|
(exwm--log)
|
2018-12-03 17:25:11 +01:00
|
|
|
|
(let ((evt (make-instance 'xcb:randr:ScreenChangeNotify)))
|
|
|
|
|
(xcb:unmarshal evt data)
|
|
|
|
|
(let ((seqnum (slot-value evt '~sequence)))
|
|
|
|
|
(unless (equal seqnum exwm-randr--prev-screen-change-seqnum)
|
|
|
|
|
(setq exwm-randr--prev-screen-change-seqnum seqnum)
|
|
|
|
|
(run-hooks 'exwm-randr-screen-change-hook)))))
|
2018-11-18 01:00:00 +01:00
|
|
|
|
|
|
|
|
|
(defun exwm-randr--on-Notify (data _synthetic)
|
|
|
|
|
"Handle `CrtcChangeNotify' and `OutputChangeNotify' events.
|
|
|
|
|
|
|
|
|
|
Refresh when any CRTC/output changes."
|
|
|
|
|
(exwm--log)
|
|
|
|
|
(let ((evt (make-instance 'xcb:randr:Notify))
|
|
|
|
|
notify)
|
|
|
|
|
(xcb:unmarshal evt data)
|
|
|
|
|
(with-slots (subCode u) evt
|
|
|
|
|
(cl-case subCode
|
|
|
|
|
(xcb:randr:Notify:CrtcChange
|
|
|
|
|
(setq notify (slot-value u 'cc)))
|
|
|
|
|
(xcb:randr:Notify:OutputChange
|
|
|
|
|
(setq notify (slot-value u 'oc))))
|
|
|
|
|
(when notify
|
|
|
|
|
(with-slots (timestamp) notify
|
|
|
|
|
(when (> timestamp exwm-randr--last-timestamp)
|
|
|
|
|
(exwm-randr-refresh)
|
|
|
|
|
(setq exwm-randr--last-timestamp timestamp)))))))
|
|
|
|
|
|
|
|
|
|
(defun exwm-randr--on-ConfigureNotify (data _synthetic)
|
|
|
|
|
"Handle `ConfigureNotify' event.
|
|
|
|
|
|
|
|
|
|
Refresh when any RandR 1.5 monitor changes."
|
2018-11-04 01:00:00 +01:00
|
|
|
|
(exwm--log)
|
2018-11-18 01:00:00 +01:00
|
|
|
|
(let ((evt (make-instance 'xcb:ConfigureNotify)))
|
|
|
|
|
(xcb:unmarshal evt data)
|
|
|
|
|
(with-slots (window) evt
|
|
|
|
|
(when (eq window exwm--root)
|
|
|
|
|
(exwm-randr-refresh)))))
|
2018-03-06 01:00:00 +01:00
|
|
|
|
|
2015-08-03 14:26:53 +02:00
|
|
|
|
(defun exwm-randr--init ()
|
|
|
|
|
"Initialize RandR extension and EXWM RandR module."
|
2018-12-02 01:00:00 +01:00
|
|
|
|
(exwm--log)
|
2015-08-03 14:26:53 +02:00
|
|
|
|
(if (= 0 (slot-value (xcb:get-extension-data exwm--connection 'xcb:randr)
|
|
|
|
|
'present))
|
|
|
|
|
(error "[EXWM] RandR extension is not supported by the server")
|
|
|
|
|
(with-slots (major-version minor-version)
|
|
|
|
|
(xcb:+request-unchecked+reply exwm--connection
|
|
|
|
|
(make-instance 'xcb:randr:QueryVersion
|
2018-11-04 01:00:00 +01:00
|
|
|
|
:major-version 1 :minor-version 5))
|
|
|
|
|
(if (or (/= major-version 1) (< minor-version 5))
|
2015-08-03 14:26:53 +02:00
|
|
|
|
(error "[EXWM] The server only support RandR version up to %d.%d"
|
|
|
|
|
major-version minor-version)
|
2016-02-06 09:47:30 +01:00
|
|
|
|
;; External monitor(s) may already be connected.
|
|
|
|
|
(run-hooks 'exwm-randr-screen-change-hook)
|
2018-11-18 01:00:00 +01:00
|
|
|
|
(exwm-randr-refresh)
|
|
|
|
|
;; Listen for `ScreenChangeNotify' to notify external tools to
|
|
|
|
|
;; configure RandR and `CrtcChangeNotify/OutputChangeNotify' to
|
|
|
|
|
;; refresh the workspace layout.
|
2015-08-03 14:26:53 +02:00
|
|
|
|
(xcb:+event exwm--connection 'xcb:randr:ScreenChangeNotify
|
2018-03-06 01:00:00 +01:00
|
|
|
|
#'exwm-randr--on-ScreenChangeNotify)
|
2018-11-18 01:00:00 +01:00
|
|
|
|
(xcb:+event exwm--connection 'xcb:randr:Notify #'exwm-randr--on-Notify)
|
|
|
|
|
(xcb:+event exwm--connection 'xcb:ConfigureNotify
|
|
|
|
|
#'exwm-randr--on-ConfigureNotify)
|
2015-08-03 14:26:53 +02:00
|
|
|
|
(xcb:+request exwm--connection
|
|
|
|
|
(make-instance 'xcb:randr:SelectInput
|
|
|
|
|
:window exwm--root
|
2018-11-18 01:00:00 +01:00
|
|
|
|
:enable (logior xcb:randr:NotifyMask:ScreenChange
|
|
|
|
|
xcb:randr:NotifyMask:CrtcChange
|
|
|
|
|
xcb:randr:NotifyMask:OutputChange)))
|
2016-07-19 04:34:38 +02:00
|
|
|
|
(xcb:flush exwm--connection)
|
2018-11-18 01:00:00 +01:00
|
|
|
|
(add-hook 'exwm-workspace-list-change-hook #'exwm-randr-refresh))))
|
2017-01-02 17:14:33 +01:00
|
|
|
|
;; Prevent frame parameters introduced by this module from being
|
|
|
|
|
;; saved/restored.
|
2018-11-04 01:00:00 +01:00
|
|
|
|
(dolist (i '(exwm-randr-monitor))
|
2018-03-06 01:00:00 +01:00
|
|
|
|
(unless (assq i frameset-filter-alist)
|
|
|
|
|
(push (cons i :never) frameset-filter-alist))))
|
2015-08-03 14:26:53 +02:00
|
|
|
|
|
2016-05-23 13:13:42 +02:00
|
|
|
|
(defun exwm-randr--exit ()
|
2016-07-19 04:34:38 +02:00
|
|
|
|
"Exit the RandR module."
|
2018-12-02 01:00:00 +01:00
|
|
|
|
(exwm--log)
|
2018-11-18 01:00:00 +01:00
|
|
|
|
(remove-hook 'exwm-workspace-list-change-hook #'exwm-randr-refresh))
|
2016-05-23 13:13:42 +02:00
|
|
|
|
|
2015-08-13 06:02:44 +02:00
|
|
|
|
(defun exwm-randr-enable ()
|
|
|
|
|
"Enable RandR support for EXWM."
|
2018-12-02 01:00:00 +01:00
|
|
|
|
(exwm--log)
|
2016-05-23 13:13:42 +02:00
|
|
|
|
(add-hook 'exwm-init-hook #'exwm-randr--init)
|
|
|
|
|
(add-hook 'exwm-exit-hook #'exwm-randr--exit))
|
2015-08-13 06:02:44 +02:00
|
|
|
|
|
2015-08-03 14:26:53 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(provide 'exwm-randr)
|
|
|
|
|
|
|
|
|
|
;;; exwm-randr.el ends here
|