Created
November 20, 2022 09:56
-
-
Save EricPedley/74aecc8b75011f9f20d783566bd0df13 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import XMonad | |
| import XMonad.Layout (Tall, Full) | |
| import XMonad.Util.EZConfig (additionalKeys) | |
| myLayouts = layoutTall ||| layoutFull | |
| where | |
| layoutTall = Tall 1 (3/100) (1/2) | |
| layoutFull = Full | |
| myKeys conf@(XConfig {modMask = modKey}) = | |
| [ | |
| ((modKey .|. shiftMask, xK_s), spawn "flameshot gui") | |
| ] | |
| myConfig = def | |
| { modMask = mod4Mask, -- Use Super instead of Alt | |
| focusedBorderColor = "#888888", | |
| normalBorderColor = "#000000", | |
| layoutHook = myLayouts | |
| -- more changes | |
| } | |
| main = xmonad $ myConfig `additionalKeys` (myKeys myConfig) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment