stumpwm/external-screens.lisp @ dedc81b8510c
Diagram
| author | Steve Losh <steve@stevelosh.com> |
|---|---|
| date | Tue, 19 Mar 2024 14:06:36 -0400 |
| parents | 4673e928c08e |
| children | 890e2d48b6f7 |
(in-package :stumpwm-user) (defcommand screen-laptop () () (only) (hostcase ((:gro :juss) (loop :with laptop = "eDP" :with extern = (hostcase (:gro "DisplayPort-0") (:juss "HDMI-A-0")) :for (output commands) :in `((,laptop ("--auto")) (,laptop ("--primary")) (,extern ("--off"))) :do (progn (uiop:run-program `("xrandr" "--output" ,output ,@commands))))) (t (message "Not configured on this system.")))) (defcommand screen-external () () (only) (hostcase ((:gro :juss) (loop :with laptop = "eDP" :with extern = (hostcase (:gro "DisplayPort-0") (:juss "HDMI-A-0")) :for (output commands) :in `((,extern ("--auto")) (,extern ("--primary")) (,laptop ("--off"))) :do (uiop:run-program `("xrandr" "--output" ,output ,@commands)))) (t (message "Not configured on this system."))))