2015-08-03 14:26:53 +02:00
|
|
|
|
;;; exwm-randr.el --- RandR Module for EXWM -*- lexical-binding: t -*-
|
|
|
|
|
|
2017-02-05 10:49:42 +01:00
|
|
|
|
;; Copyright (C) 2015-2017 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:
|
|
|
|
|
|
|
|
|
|
;; 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-11-01 03:54:20 +01:00
|
|
|
|
;; To use this module, load, enable it and configure
|
|
|
|
|
;; `exwm-randr-workspace-output-plist' and `exwm-randr-screen-change-hook'
|
|
|
|
|
;; as follows:
|
|
|
|
|
;;
|
2015-08-13 06:02:44 +02:00
|
|
|
|
;; (require 'exwm-randr)
|
2015-08-03 14:26:53 +02:00
|
|
|
|
;; (setq exwm-randr-workspace-output-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
|
|
|
|
|
|
|
|
|
(defvar exwm-randr-workspace-output-plist nil)
|
|
|
|
|
|
2016-02-19 10:12:43 +01:00
|
|
|
|
(defvar exwm-randr-refresh-hook nil
|
|
|
|
|
"Normal hook run when the RandR module just refreshed.")
|
|
|
|
|
|
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)
|
|
|
|
|
|
2016-07-17 14:00:00 +02:00
|
|
|
|
(declare-function exwm-workspace--count "exwm-workspace.el")
|
2016-07-16 08:34:57 +02:00
|
|
|
|
(declare-function exwm-workspace--set-fullscreen "exwm-workspace.el" (frame))
|
2016-07-17 14:00:00 +02:00
|
|
|
|
(declare-function exwm-workspace--update-workareas "exwm-workspace.el" ())
|
2016-07-21 06:48:12 +02:00
|
|
|
|
(declare-function exwm-workspace--show-minibuffer "exwm-workspace.el" ())
|
2016-07-13 12:51:32 +02:00
|
|
|
|
(declare-function exwm-workspace--set-desktop-geometry "exwm-workspace.el" ())
|
2016-02-19 10:12:43 +01:00
|
|
|
|
|
2015-08-03 14:26:53 +02:00
|
|
|
|
(defun exwm-randr--refresh ()
|
|
|
|
|
"Refresh workspaces according to the updated RandR info."
|
2016-07-16 08:34:57 +02:00
|
|
|
|
(let (output-name geometry output-plist default-geometry)
|
2015-08-03 14:26:53 +02:00
|
|
|
|
;; Query all outputs
|
|
|
|
|
(with-slots (config-timestamp outputs)
|
|
|
|
|
(xcb:+request-unchecked+reply exwm--connection
|
|
|
|
|
(make-instance 'xcb:randr:GetScreenResources
|
|
|
|
|
:window exwm--root))
|
|
|
|
|
(dolist (output outputs)
|
|
|
|
|
(with-slots (crtc connection name)
|
|
|
|
|
(xcb:+request-unchecked+reply exwm--connection
|
|
|
|
|
(make-instance 'xcb:randr:GetOutputInfo
|
|
|
|
|
:output output
|
|
|
|
|
:config-timestamp config-timestamp))
|
2015-09-11 15:00:27 +02:00
|
|
|
|
(setf output-name ;UTF-8 encoded
|
2015-09-04 03:09:59 +02:00
|
|
|
|
(decode-coding-string (apply #'unibyte-string name) 'utf-8))
|
2015-08-03 14:26:53 +02:00
|
|
|
|
(if (or (/= connection xcb:randr:Connection:Connected)
|
|
|
|
|
(= 0 crtc)) ;FIXME
|
2015-09-11 15:00:27 +02:00
|
|
|
|
(plist-put output-plist output-name nil)
|
2015-08-03 14:26:53 +02:00
|
|
|
|
(with-slots (x y width height)
|
|
|
|
|
(xcb:+request-unchecked+reply exwm--connection
|
|
|
|
|
(make-instance 'xcb:randr:GetCrtcInfo
|
|
|
|
|
:crtc crtc
|
|
|
|
|
:config-timestamp config-timestamp))
|
2015-08-26 11:25:21 +02:00
|
|
|
|
(setq geometry (make-instance 'xcb:RECTANGLE
|
|
|
|
|
:x x :y y
|
|
|
|
|
:width width :height height)
|
2015-09-11 15:00:27 +02:00
|
|
|
|
output-plist (plist-put output-plist output-name geometry))
|
2015-08-03 14:26:53 +02:00
|
|
|
|
(unless default-geometry ;assume the first output as primary
|
2015-08-26 11:25:21 +02:00
|
|
|
|
(setq default-geometry geometry)))))))
|
2016-02-06 09:47:30 +01:00
|
|
|
|
(exwm--log "(randr) outputs: %s" output-plist)
|
2016-02-07 03:22:33 +01:00
|
|
|
|
(when output-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))
|
2016-02-07 03:22:33 +01:00
|
|
|
|
(let* ((output (plist-get exwm-randr-workspace-output-plist i))
|
|
|
|
|
(geometry (lax-plist-get output-plist output))
|
|
|
|
|
(frame (elt exwm-workspace--list i)))
|
|
|
|
|
(unless geometry
|
|
|
|
|
(setq geometry default-geometry
|
|
|
|
|
output nil))
|
|
|
|
|
(set-frame-parameter frame 'exwm-randr-output output)
|
2016-07-16 08:34:57 +02:00
|
|
|
|
(set-frame-parameter frame 'exwm-geometry geometry)))
|
2016-08-15 12:42:35 +02:00
|
|
|
|
;; Update workareas.
|
2016-07-16 08:34:57 +02:00
|
|
|
|
(exwm-workspace--update-workareas)
|
|
|
|
|
;; Resize workspace.
|
|
|
|
|
(dolist (f exwm-workspace--list)
|
|
|
|
|
(exwm-workspace--set-fullscreen f))
|
2016-07-21 06:48:12 +02:00
|
|
|
|
;; Raise the minibuffer if it's active.
|
|
|
|
|
(when (and (active-minibuffer-window)
|
|
|
|
|
(exwm-workspace--minibuffer-own-frame-p))
|
|
|
|
|
(exwm-workspace--show-minibuffer))
|
2016-07-13 12:51:32 +02:00
|
|
|
|
;; Set _NET_DESKTOP_GEOMETRY.
|
|
|
|
|
(exwm-workspace--set-desktop-geometry)
|
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
|
|
|
|
|
2015-11-01 03:54:20 +01:00
|
|
|
|
(defvar exwm-randr-screen-change-hook nil
|
|
|
|
|
"Normal hook run when screen changes.")
|
|
|
|
|
|
2015-08-03 14:26:53 +02:00
|
|
|
|
(defun exwm-randr--init ()
|
|
|
|
|
"Initialize RandR extension and EXWM RandR module."
|
|
|
|
|
(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
|
|
|
|
|
:major-version 1 :minor-version 2))
|
|
|
|
|
(if (or (/= major-version 1) (< minor-version 2))
|
|
|
|
|
(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)
|
2015-08-03 14:26:53 +02:00
|
|
|
|
(exwm-randr--refresh)
|
|
|
|
|
(xcb:+event exwm--connection 'xcb:randr:ScreenChangeNotify
|
2015-09-04 03:09:59 +02:00
|
|
|
|
(lambda (_data _synthetic)
|
2015-08-13 06:02:44 +02:00
|
|
|
|
(exwm--log "(RandR) ScreenChangeNotify")
|
2015-11-01 03:54:20 +01:00
|
|
|
|
(run-hooks 'exwm-randr-screen-change-hook)
|
2015-08-03 14:26:53 +02:00
|
|
|
|
(exwm-randr--refresh)))
|
|
|
|
|
;; (xcb:+event exwm--connection 'xcb:randr:Notify
|
2015-09-04 03:09:59 +02:00
|
|
|
|
;; (lambda (_data _synthetic)
|
2015-08-13 06:02:44 +02:00
|
|
|
|
;; (exwm--log "(RandR) Notify")
|
2015-08-03 14:26:53 +02:00
|
|
|
|
;; (exwm-randr--refresh)))
|
|
|
|
|
(xcb:+request exwm--connection
|
|
|
|
|
(make-instance 'xcb:randr:SelectInput
|
|
|
|
|
:window exwm--root
|
|
|
|
|
:enable xcb:randr:NotifyMask:ScreenChange
|
2015-09-27 13:31:00 +02:00
|
|
|
|
;; :enable (eval-when-compile
|
|
|
|
|
;; (logior
|
|
|
|
|
;; xcb:randr:NotifyMask:ScreenChange
|
|
|
|
|
;; xcb:randr:NotifyMask:OutputChange
|
|
|
|
|
;; xcb:randr:NotifyMask:OutputProperty
|
|
|
|
|
;; xcb:randr:NotifyMask:CrtcChange))
|
2015-08-03 14:26:53 +02:00
|
|
|
|
))
|
2016-07-19 04:34:38 +02:00
|
|
|
|
(xcb:flush exwm--connection)
|
2017-01-02 17:14:33 +01:00
|
|
|
|
(add-hook 'exwm-workspace-list-change-hook #'exwm-randr--refresh))))
|
|
|
|
|
;; Prevent frame parameters introduced by this module from being
|
|
|
|
|
;; saved/restored.
|
|
|
|
|
(dolist (i '(exwm-randr-output exwm-geometry))
|
|
|
|
|
(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."
|
|
|
|
|
(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."
|
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
|