fb5f1726df
It seems like something when I run `display/enable-4k` my resolution isn't at 4k fully. However, when I call the same command on the command line it does scale properly. This doesn't sound likely, and frankly I haven't had too much time to try and reproduce this. Hence - the TODO!
69 lines
2.2 KiB
EmacsLisp
69 lines
2.2 KiB
EmacsLisp
;;; 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:
|
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
;; Dependencies
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
(require 'prelude)
|
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
;; Constants
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
(defconst display/install-kbds? t
|
|
"When t, install the keybindings defined in this module.")
|
|
|
|
;; TODO: Consider if this logic should be conditioned by `device/work-laptop?'.
|
|
(defconst display/laptop-monitor "eDP1"
|
|
"The xrandr identifier for my primary screen (on work laptop).")
|
|
|
|
;; TODO: Why is HDMI-1, eDP-1 sometimes and HDMI1, eDP1 other times.
|
|
(defconst display/4k-monitor "HDMI1"
|
|
"The xrandr identifer for my 4K monitor.")
|
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
;; Library
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
;; TODO: Debug why something this scales to 4k appropriately and other times it
|
|
;; doesn't.
|
|
(defun display/enable-4k ()
|
|
"Attempt to connect to my 4K monitor."
|
|
(interactive)
|
|
(prelude/start-process
|
|
:name "display/enable-4k"
|
|
:command (string/format
|
|
"xrandr --output %s --above %s --primary --auto --dpi 144"
|
|
display/4k-monitor
|
|
display/laptop-monitor)))
|
|
|
|
(defun display/disable-4k ()
|
|
"Disconnect from the 4K monitor."
|
|
(interactive)
|
|
(prelude/start-process
|
|
:name "display/disable-4k"
|
|
:command (string/format "xrandr --output %s --off"
|
|
display/4k-monitor)))
|
|
|
|
(when display/install-kbds?
|
|
(general-define-key
|
|
:prefix "<SPC>"
|
|
:states '(normal)
|
|
"D0" #'display/disable-4k
|
|
"D1" #'display/enable-4k))
|
|
|
|
(provide 'display)
|
|
;;; display.el ends here
|