From bfb70428f7791000239ac1d90635677ff577fee7 Mon Sep 17 00:00:00 2001 From: Josh Rahm Date: Tue, 29 Mar 2022 14:26:40 -0600 Subject: Fixed bug where multiple configures would override previous configures for window-specific bindings --- src/Main.hs | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/Main.hs') diff --git a/src/Main.hs b/src/Main.hs index a83f1c3..0b4a181 100644 --- a/src/Main.hs +++ b/src/Main.hs @@ -60,6 +60,10 @@ main = do , className =? "mpv" --> doFloat , className =? "gnubby_ssh_prompt" --> doFloat ] + -- This config uses dynamic workspaces, but I have to seed XMonad + -- with something. However, this configuration only supports 36 + -- monitors on boot. If you need more than 36 monitors, you'll have to + -- configure those ones after starting XMonad. , workspaces = map return (['0'..'9'] ++ ['a'..'z']) , handleEventHook = composeAll [ -- cgit