aboutsummaryrefslogtreecommitdiffstats
path: root/DwmPromote.hs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--DwmPromote.hs12
1 files changed, 5 insertions, 7 deletions
diff --git a/DwmPromote.hs b/DwmPromote.hs
index a4143c3..778cf20 100644
--- a/DwmPromote.hs
+++ b/DwmPromote.hs
@@ -40,10 +40,8 @@ import StackSet
-- %keybind , ((modMask, xK_Return), dwmpromote)
dwmpromote :: X ()
-dwmpromote = windows swap
-
-swap :: StackSet i a s sd -> StackSet i a s sd
-swap = modify' $ \c -> case c of
- Stack _ [] [] -> c
- Stack t [] (x:rs) -> Stack x [] (t:rs)
- Stack t ls rs -> Stack t [] (ys ++ x : rs) where (x:ys) = reverse ls
+dwmpromote = windows $ modify' $
+ \c -> case c of
+ Stack _ [] [] -> c
+ Stack t [] (x:rs) -> Stack x [] (t:rs)
+ Stack t ls rs -> Stack t [] (ys ++ x : rs) where (x:ys) = reverse ls