From 1a5b4934f659deff1c3e2960ac1077fe7f723382 Mon Sep 17 00:00:00 2001 From: Dmitriy Pleshevskiy Date: Fri, 15 Apr 2022 13:53:44 +0300 Subject: [PATCH] refac(prog/xmonad): m-tab cycle between grid and tall --- programs/xmonad/xmonad.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/programs/xmonad/xmonad.hs b/programs/xmonad/xmonad.hs index 17ca9b5..b0310e2 100644 --- a/programs/xmonad/xmonad.hs +++ b/programs/xmonad/xmonad.hs @@ -85,7 +85,7 @@ myKeys conf = mkKeymap conf $ -- Rotate through the available layout algorithms , ("M-", cycleThroughLayouts ["Full", "Tall"]) - , ("M-", sendMessage $ JumpToLayout "Grid") + , ("M-", cycleThroughLayouts ["Grid", "Tall"]) -- Reset the layouts on the current workspace to default , ("M-S-", setLayout $ XMonad.layoutHook conf)