about summary refs log tree commit diff
diff options
context:
space:
mode:
authorWilliam Carroll <wpcarro@gmail.com>2022-01-20T23·51-0800
committerclbot <clbot@tvl.fyi>2022-01-27T06·33+0000
commit00cadf07b6a39429af4159d8f0917ee72ec67869 (patch)
treeee1472bbe729dd522d04cec4a8a084cc9ed1b375
parent38ec094d2af188ec938e64c0172acd70410965cb (diff)
refactor(wpcarro/emacs): Drop display-register calls from display.el r/3689
Let's have `display.el` be a pure library. Once I convert all of my Elisp
libraries to pure libraries, I can publicly export them for other depot users
and maybe other Github users (with the proper josh configuration?).

Change-Id: I87cce80ebb7d2396e39246dabc4e49d7aba2c094
Reviewed-on: https://cl.tvl.fyi/c/depot/+/5038
Tested-by: BuildkiteCI
Autosubmit: wpcarro <wpcarro@gmail.com>
Reviewed-by: wpcarro <wpcarro@gmail.com>
-rw-r--r--users/wpcarro/emacs/.emacs.d/wpc/display.el34
1 files changed, 0 insertions, 34 deletions
diff --git a/users/wpcarro/emacs/.emacs.d/wpc/display.el b/users/wpcarro/emacs/.emacs.d/wpc/display.el
index 62c3fce2f1..69dae6939e 100644
--- a/users/wpcarro/emacs/.emacs.d/wpc/display.el
+++ b/users/wpcarro/emacs/.emacs.d/wpc/display.el
@@ -99,39 +99,5 @@ See the man-page for xrandr for more details."
                                      (eval (intern (format "display-%s-args" x)))))
                              (s-join " "))))))
 
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-;; Configuration
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-
-(display-register laptop
-                  :output "eDP1"
-                  :primary nil
-                  :coords (2560 1440)
-                  :size (1920 1080)
-                  :rate 30.0
-                  :dpi 144
-                  :rotate normal)
-
-(display-register 4k-horizontal
-                  :output "DP-0"
-                  :primary t
-                  :coords (0 0)
-                  :size (2560 1440)
-                  :rate 30.0
-                  :dpi 144
-                  :rotate normal)
-
-(display-register 4k-vertical
-                  :output "DP-2"
-                  :primary nil
-                  :coords (-1440 -560)
-                  :size (2560 1440)
-                  :rate 30.0
-                  :dpi 144
-                  :rotate left)
-
-(display-arrangement primary
-                     :displays (laptop 4k-horizontal 4k-vertical))
-
 (provide 'display)
 ;;; display.el ends here