From ab92f9e3005218fce2bd6bc668417d3edce2a1cc Mon Sep 17 00:00:00 2001 From: Josh Rahm Date: Mon, 29 Jan 2024 14:31:35 -0700 Subject: Switch back to using mod4 as the main key with XMonad. Using the hyper key is too much work. --- src/Main.hs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Main.hs b/src/Main.hs index a0e13cb..f0059d7 100644 --- a/src/Main.hs +++ b/src/Main.hs @@ -56,7 +56,7 @@ import XMonad doFloat, floatLocation, liftX, - mod3Mask, + mod4Mask, modify, mouseDrag, refresh, @@ -98,7 +98,7 @@ main = do docks $ def { terminal = "alacritty", - modMask = mod3Mask, + modMask = mod4Mask, borderWidth = 2, keys = const mempty, focusedBorderColor = "#ff6c00", -- cgit