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.
This commit is contained in:
William Carroll 2020-03-16 13:58:18 +00:00
parent 319652fe08
commit fbf66c423b

View file

@ -32,7 +32,7 @@
(defconst display/4k-monitor "HDMI1" (defconst display/4k-monitor "HDMI1"
"The xrandr identifer for my 4K monitor.") "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. "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 The car models the enabled state of my laptop display; the cdr models the
enabled state of my external monitor.") enabled state of my external monitor.")