From 75f1accf4360c48be823be63f29003c02e05f47e Mon Sep 17 00:00:00 2001 From: Jacob Hinkle Date: Mon, 26 Sep 2022 09:43:33 -0400 Subject: [PATCH] Add xmonad keys for hdmi --- home/xmonad.hs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/home/xmonad.hs b/home/xmonad.hs index 0799da8..9a1b55a 100644 --- a/home/xmonad.hs +++ b/home/xmonad.hs @@ -37,6 +37,10 @@ myConfig = def -- launch programs ("M-'", spawn "qutebrowser") , ("M-s", spawn "scrot -s") + -- xrandr commands for when (dis)connecting from external monitor + -- I have temporarily given up on using autorandr fo rthis + , ("M-x", spawn "xrandr --output DP-1 --auto --output eDP-1 --off") -- external + , ("M-c", spawn "xrandr --output eDP-1 --auto --output DP-1 --off") -- laptop only -- cycle windows within a workspace , ("M-a", rotAllUp) , ("M-f", rotAllDown)