attempt to change keybind

This commit is contained in:
Sakooooo 2023-07-23 15:39:50 +03:00
parent b2ec11c835
commit c19847ebe3
Signed by: sako
GPG key ID: 3FD715D87D7725E0

View file

@ -64,13 +64,13 @@ myKeys conf@(XConfig {XMonad.modMask = modm}) = M.fromList $
[ ((modm, xK_Return), spawn $ XMonad.terminal conf)
-- launch dmenu
, ((modm, xK_p ), spawn "rofi -show-icons -show drun")
, ((modm, xK_space ), spawn "rofi -show-icons -show drun")
-- close focused window
, ((modm .|. shiftMask, xK_c ), kill)
-- Rotate through the available layout algorithms
, ((modm, xK_space ), sendMessage NextLayout)
, ((modm, xK_p ), sendMessage NextLayout)
-- Reset the layouts on the current workspace to default
, ((modm .|. shiftMask, xK_space ), setLayout $ XMonad.layoutHook conf)