This commit is contained in:
mtgmonkey 2025-05-31 08:11:46 -04:00
commit 97edab4950
6 changed files with 929 additions and 0 deletions

11
home/xmonad/config.hs Executable file
View file

@ -0,0 +1,11 @@
import XMonad
import XMonad.Util.Ungrab
import XMonad.Util.EZConfig
main :: IO ()
main = xmonad $ def
{
modMask = mod4Mask -- map to <Super>
}
`additionalKeysP`
[ ("M-q" , spawn "qutebrowser" ) ]