commit | b43ac6bd7342301759c12ece33f010289db3c309 | [log] [tgz] |
---|---|---|
author | Skyler Grey <skyler3665@gmail.com> | Mon Oct 31 00:48:34 2022 +0000 |
committer | Skyler Grey <skyler3665@gmail.com> | Wed Nov 02 08:13:31 2022 +0000 |
tree | fc866ccc58a70908f8038c5304166cd2053dfa32 | |
parent | d01ca9c508e45ae8c436250ecca412857dcf849b [diff] [blame] |
Remove wayland, replace it with xmonad
diff --git a/modules/xmonad/xmonad.hs b/modules/xmonad/xmonad.hs new file mode 100644 index 0000000..518ba33 --- /dev/null +++ b/modules/xmonad/xmonad.hs
@@ -0,0 +1,10 @@ +-- spell-checker:words xmonad +import XMonad + +import XMonad.Util.EZConfig + +main :: IO () +main = xmonad $ def + { modMask = mod4Mask -- Use Super as our mod key + , terminal = "kitty" -- Kitty, my beloved <3 + }