refac(prog/xmonad): m-tab cycle between grid and tall

This commit is contained in:
Dmitriy Pleshevskiy 2022-04-15 13:53:44 +03:00
parent e1649998b5
commit 1a5b4934f6

View file

@ -85,7 +85,7 @@ myKeys conf = mkKeymap conf $
-- Rotate through the available layout algorithms
, ("M-<Space>", cycleThroughLayouts ["Full", "Tall"])
, ("M-<Tab>", sendMessage $ JumpToLayout "Grid")
, ("M-<Tab>", cycleThroughLayouts ["Grid", "Tall"])
-- Reset the layouts on the current workspace to default
, ("M-S-<Space>", setLayout $ XMonad.layoutHook conf)