refac(prog/xmonad): reorder key bindings

This commit is contained in:
Dmitriy Pleshevskiy 2022-04-07 20:33:10 +03:00
parent cb4c106a75
commit 9426fc8743

View file

@ -68,7 +68,10 @@ myKeys conf@(XConfig {XMonad.modMask = modm}) = M.fromList $
-- launch a terminal
[ ((modm .|. shiftMask, xK_Return), spawn $ XMonad.terminal conf)
-- launch dmenu
-- launch a 'flameshot' to screenshot
, ((modm .|. shiftMask, xK_s ), safeSpawn "flameshot" ["gui"])
-- launch 'dmenu_run' to choose applications
, ((modm, xK_p ), spawn "dmenu_run")
-- close focused window
@ -131,9 +134,6 @@ myKeys conf@(XConfig {XMonad.modMask = modm}) = M.fromList $
-- Run xmessage with a summary of the default keybindings (useful for beginners)
, ((modm .|. shiftMask, xK_slash ), xmessage help)
-- Cut screenshot
, ((modm .|. shiftMask, xK_s ), safeSpawn "flameshot" ["gui"])
]
++