From f04cae86eb3fc102a924a5262be3ec6240b52aa8 Mon Sep 17 00:00:00 2001 From: Dmitriy Pleshevskiy Date: Tue, 14 Mar 2023 12:49:36 +0300 Subject: [PATCH] xmonad: fix layout name --- users/modules/window_manager/xmonad_config.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/users/modules/window_manager/xmonad_config.hs b/users/modules/window_manager/xmonad_config.hs index f9e2012..fad67ff 100644 --- a/users/modules/window_manager/xmonad_config.hs +++ b/users/modules/window_manager/xmonad_config.hs @@ -308,7 +308,7 @@ myKeys conf = layout_kb = [ -- Rotate through the available layout algorithms -- ("M-", sendMessage NextLayout), - ("M-", cycleThroughLayouts ["Full", "Mirror Spacing Tall"]), + ("M-", cycleThroughLayouts ["Full", "Mirror Tall"]), ("M-", cycleThroughLayouts ["Tall", "Mirror Tall"]), -- Reset the layouts on the current workspace to default ("M-S-", setLayout $ XMonad.layoutHook conf),