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 <joshuarahm@gmail.com>2022-10-09 12:19:45 -0600
commit0b8d6be9e33d643ddfdca6d4b5560259f4a881b8 (patch)
tree22deb572624865052303f080f3c2f0c72f9f52a5 /src/Internal/Keys.hs
parent70814727ada389ba087ff5292d08a8ede92b3d75 (diff)
downloadrde-0b8d6be9e33d643ddfdca6d4b5560259f4a881b8.tar.gz
rde-0b8d6be9e33d643ddfdca6d4b5560259f4a881b8.tar.bz2
rde-0b8d6be9e33d643ddfdca6d4b5560259f4a881b8.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)