diff options
author | William Carroll <wpcarro@gmail.com> | 2020-03-16T13·58+0000 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2020-03-16T13·58+0000 |
commit | fbf66c423b37d7f86b5f7679cb09d8bc75c41ff6 (patch) | |
tree | bbc932e93a828ff1b3fb63b1b040b7814ac43d54 /emacs/.emacs.d/wpc/display.el | |
parent | 319652fe08e50c00022b8caaa8ef357637393827 (diff) |
Remove setting for enabling both laptop and external monitor
Currently I prefer working with one screen at a time, so I'm preferring to toggle between external monitor and laptop monitor.
Diffstat (limited to 'emacs/.emacs.d/wpc/display.el')
-rw-r--r-- | emacs/.emacs.d/wpc/display.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/emacs/.emacs.d/wpc/display.el b/emacs/.emacs.d/wpc/display.el index 56fc2de89817..8895b89ff4ec 100644 --- a/emacs/.emacs.d/wpc/display.el +++ b/emacs/.emacs.d/wpc/display.el @@ -32,7 +32,7 @@ (defconst display/4k-monitor "HDMI1" "The xrandr identifer for my 4K monitor.") -(defconst display/display-states (cycle/from-list '((t . t) (t . nil) (nil . t))) +(defconst display/display-states (cycle/from-list '((t . nil) (nil . t))) "A list of cons cells modelling enabled and disabled states for my displays. The car models the enabled state of my laptop display; the cdr models the enabled state of my external monitor.") |