2019-10-09 13:13:56 +02:00
|
|
|
;;; display.el --- Working with single or multiple displays -*- lexical-binding: t -*-
|
|
|
|
;; Author: William Carroll <wpcarro@gmail.com>
|
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
;; Mostly wrappers around xrandr.
|
|
|
|
;;
|
|
|
|
;; TODO: Look into autorandr to see if it could be useful.
|
|
|
|
;;
|
|
|
|
;; Troubleshooting:
|
|
|
|
;; The following commands help me when I (infrequently) interact with xrandr.
|
|
|
|
;; - xrandr --listmonitors
|
|
|
|
;; - xrandr --query
|
|
|
|
|
|
|
|
;;; Code:
|
|
|
|
|
2019-12-23 18:31:42 +01:00
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
;; Dependencies
|
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
|
|
|
|
(require 'prelude)
|
|
|
|
|
2019-10-09 13:13:56 +02:00
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
;; Constants
|
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
|
|
|
|
;; TODO: Consider if this logic should be conditioned by `device/work-laptop?'.
|
|
|
|
(defconst display/primary "eDP-1"
|
|
|
|
"The xrandr identifier for my primary screen (on work laptop).")
|
|
|
|
|
|
|
|
(defconst display/4k "HDMI-1"
|
|
|
|
"The xrandr identifer for my 4K monitor.")
|
|
|
|
|
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
;; Library
|
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
|
|
|
|
(defun display/enable-4k ()
|
|
|
|
"Attempt to connect to my 4K monitor."
|
|
|
|
(interactive)
|
2019-12-23 18:31:42 +01:00
|
|
|
(prelude/start-process
|
|
|
|
:name "display"
|
|
|
|
:command (string/format "xrandr --output %s --dpi 144 --auto --right-of %s"
|
|
|
|
display/4k
|
|
|
|
display/primary)))
|
2019-10-09 13:13:56 +02:00
|
|
|
|
|
|
|
(defun display/disable-4k ()
|
|
|
|
"Disconnect from the 4K monitor."
|
|
|
|
(interactive)
|
2019-12-23 18:31:42 +01:00
|
|
|
(prelude/start-process
|
|
|
|
:name "display/disable-4k"
|
|
|
|
:command (string/format "xrandr --output %s --off" display/4k)))
|
2019-10-09 13:13:56 +02:00
|
|
|
|
|
|
|
(provide 'display)
|
|
|
|
;;; display.el ends here
|