From 5f26073fb87a783f837fd9ec911457f64b67366e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maximilian=20Ke=C3=9Fler?= Date: Sat, 16 Jul 2022 14:35:13 +0200 Subject: [PATCH] fix missing main modifier at system key bindings --- src/XMonad/Custom/SystemKeyBindings.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/XMonad/Custom/SystemKeyBindings.hs b/src/XMonad/Custom/SystemKeyBindings.hs index e891b13..025a833 100644 --- a/src/XMonad/Custom/SystemKeyBindings.hs +++ b/src/XMonad/Custom/SystemKeyBindings.hs @@ -5,7 +5,7 @@ import XMonad import XMonad.Custom.BindingUtils mySystemKeyBindings :: [([Char], X ())] -mySystemKeyBindings = addSubMapKey mySystemKey $ [ +mySystemKeyBindings = addMainModifierToBinding . addSubMapKey mySystemKey $ [ ("p", spawn "poweroff"), ("r", systemctl "reboot"), ("l", i3lock),