fix missing main modifier at system key bindings

This commit is contained in:
Maximilian Keßler 2022-07-16 14:35:13 +02:00
parent a7c09f875e
commit 5f26073fb8

View File

@ -5,7 +5,7 @@ import XMonad
import XMonad.Custom.BindingUtils import XMonad.Custom.BindingUtils
mySystemKeyBindings :: [([Char], X ())] mySystemKeyBindings :: [([Char], X ())]
mySystemKeyBindings = addSubMapKey mySystemKey $ [ mySystemKeyBindings = addMainModifierToBinding . addSubMapKey mySystemKey $ [
("p", spawn "poweroff"), ("p", spawn "poweroff"),
("r", systemctl "reboot"), ("r", systemctl "reboot"),
("l", i3lock), ("l", i3lock),