about summary refs log tree commit diff
path: root/emacs/.emacs.d/wpc/display.el
diff options
context:
space:
mode:
authorWilliam Carroll <wpcarro@gmail.com>2021-10-06T23·40-0700
committerWilliam Carroll <wpcarro@gmail.com>2021-10-06T23·40-0700
commit26bc3c01e554b654c14968ee0abb2f1339887b96 (patch)
tree0747f76037620e7f9aca5aed52ac30c8502d0e51 /emacs/.emacs.d/wpc/display.el
parent3758f2ef851dd0c35531ba829bcf679a52d21702 (diff)
Update displays.el
Today is my first day back in the office at Google (this time at MP2 in
Sunnyvale)! As such, I have a new desk, new monitors, so expect some changes to
my configuration until I stabilize everything.
Diffstat (limited to '')
-rw-r--r--emacs/.emacs.d/wpc/display.el13
1 files changed, 2 insertions, 11 deletions
diff --git a/emacs/.emacs.d/wpc/display.el b/emacs/.emacs.d/wpc/display.el
index 3507f11915..a3c54f1aa9 100644
--- a/emacs/.emacs.d/wpc/display.el
+++ b/emacs/.emacs.d/wpc/display.el
@@ -113,7 +113,7 @@ See the man-page for xrandr for more details."
                   :rotate normal)
 
 (display-register 4k-horizontal
-                  :output "HDMI1"
+                  :output "DP2"
                   :primary t
                   :coords (0 1062)
                   :size (3840 2160)
@@ -121,17 +121,8 @@ See the man-page for xrandr for more details."
                   :dpi 144
                   :rotate normal)
 
-(display-register 4k-vertical
-                  :output "DP2"
-                  :primary nil
-                  :coords (3840 0)
-                  :size (3840 2160)
-                  :rate 30.0
-                  :dpi 144
-                  :rotate right)
-
 (display-arrangement primary
-                     :displays (4k-horizontal 4k-vertical))
+                     :displays (4k-horizontal laptop))
 
 (provide 'display)
 ;;; display.el ends here