aboutsummaryrefslogtreecommitdiff
path: root/src/Internal/Keys.hs
diff options
context:
space:
mode:
authorJosh Rahm <rahm@google.com>2021-11-05 16:20:28 -0600
committerJosh Rahm <rahm@google.com>2021-11-05 16:20:28 -0600
commit168b02cfea52164379c59ae77e44d34ce8409974 (patch)
tree22deb572624865052303f080f3c2f0c72f9f52a5 /src/Internal/Keys.hs
parentdb70d254688fbeca119ca29e4968513df07bd34b (diff)
downloadrde-168b02cfea52164379c59ae77e44d34ce8409974.tar.gz
rde-168b02cfea52164379c59ae77e44d34ce8409974.tar.bz2
rde-168b02cfea52164379c59ae77e44d34ce8409974.zip
Add new Corner layout to keep the master window in the corner.
As a part of this add the Rotatable layout modifier that can rotate the windows 90 degrees using Shift+Mod+r.
Diffstat (limited to 'src/Internal/Keys.hs')
-rw-r--r--src/Internal/Keys.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Internal/Keys.hs b/src/Internal/Keys.hs
index bc27750..d02e1f4 100644
--- a/src/Internal/Keys.hs
+++ b/src/Internal/Keys.hs
@@ -90,7 +90,7 @@ newKeys markContext =
, ((modm , xK_Return), windows W.swapMaster)
, ((modm, xK_j), sendMessage Shrink)
, ((modm, xK_k), sendMessage Expand)
- , ((modm .|. shiftMask, xK_r), (void $ spawn "gmrun"))
+ , ((modm .|. shiftMask, xK_r), sendMessage DoRotate)
, ((modm .|. mod1Mask, xK_l), (void $ spawn "xsecurelock"))
, ((modm .|. mod1Mask, xK_s), (void $ spawn "sudo systemctl suspend && xsecurelock"))
, ((modm .|. shiftMask, xK_c), kill)