From 095fe593fdee718d0ceb95ce74921cf20a6c276e Mon Sep 17 00:00:00 2001 From: Dmitriy Pleshevskiy Date: Tue, 3 May 2022 23:35:52 +0300 Subject: [PATCH] refac(prog/xmonad): change hotkey to close win --- 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 c71ae14..5458b11 100644 --- a/programs/xmonad/xmonad.hs +++ b/programs/xmonad/xmonad.hs @@ -83,7 +83,7 @@ myKeys conf = mkKeymap conf $ , ("M-p", spawn "dmenu_run") -- close focused window - , ("M-S-c", kill) + , ("M4-S-c", kill) -- Rotate through the available layout algorithms , ("M-", cycleThroughLayouts ["Full", "Tall"])