From 31b5e57b18bab46896d825248319a8387fac3b7c Mon Sep 17 00:00:00 2001 From: Josh Rahm Date: Tue, 12 Apr 2022 11:55:57 -0600 Subject: noMod -> (noMod -|- justMod) --- src/Rahm/Desktop/Keys.hs | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/Rahm/Desktop/Keys.hs b/src/Rahm/Desktop/Keys.hs index 33830dc..27de459 100644 --- a/src/Rahm/Desktop/Keys.hs +++ b/src/Rahm/Desktop/Keys.hs @@ -412,38 +412,38 @@ keymap = runKeys $ do altMod $ spawnX "sudo -A systemctl suspend && xsecurelock" bind xK_space $ do - justMod $ subkeys $ do + justMod $ doc "Layout-related bindings" $ subkeys $ do bind xK_n $ - noMod $ doc "Use the next layout in the layout list." $ + (noMod -|- justMod) $ doc "Use the next layout in the layout list." $ sendMessage toNextLayout bind xK_p $ - noMod $ doc "Use the previous layout in thelayout list." $ + (noMod -|- justMod) $ doc "Use the previous layout in the layout list." $ sendMessage toPreviousLayout bind xK_b $ - noMod $ doc "Go back to the first layout in the layout list." $ + (noMod -|- justMod) $ doc "Go back to the first layout in the layout list." $ sendMessage toFirstLayout bind xK_h $ - noMod $ doc "Flip the layout across the horizontal axis" $ + (noMod -|- justMod) $ doc "Flip the layout across the horizontal axis" $ sendMessage flipVertically bind xK_v $ - noMod $ doc "Flip the layout across the vertical axis" $ + (noMod -|- justMod) $ doc "Flip the layout across the vertical axis" $ sendMessage flipHorizontally bind xK_r $ - noMod $ doc "Rotate the layout 90 degrees" $ + (noMod -|- justMod) $ doc "Rotate the layout 90 degrees" $ sendMessage rotateLayout bind xK_t $ - noMod $ doc "Toggle the pop window" $ + (noMod -|- justMod) $ doc "Toggle the pop window" $ sendMessage togglePop bind xK_x $ - noMod $ doc "Toggle the hole" $ + (noMod -|- justMod) $ doc "Toggle the hole" $ sendMessage toggleHole bind xK_t $ do -- cgit