aboutsummaryrefslogtreecommitdiff
path: root/components/functions/Numpad
diff options
context:
space:
mode:
authordakkar <dakkar@thenautilus.net>2015-06-02 16:16:36 +0100
committerdakkar <dakkar@thenautilus.net>2015-06-02 16:16:36 +0100
commit5fee59e19e46ccee891c96e8177afb7d4c400e57 (patch)
tree5b7bf522a8f77f302bdf6c7c0c98e827605440a2 /components/functions/Numpad
parentshift-FF for private window (diff)
downloadfvwm-crystal-5fee59e19e46ccee891c96e8177afb7d4c400e57.tar.gz
fvwm-crystal-5fee59e19e46ccee891c96e8177afb7d4c400e57.tar.bz2
fvwm-crystal-5fee59e19e46ccee891c96e8177afb7d4c400e57.zip
update to fvwm-crystal 3.2.3
This update is big: upstream has simplified and refactored everything, so I had to move stuff around a lot. I now rely much more on the overlay system, instead of adding custom files all over the place.
Diffstat (limited to 'components/functions/Numpad')
-rw-r--r--components/functions/Numpad57
1 files changed, 0 insertions, 57 deletions
diff --git a/components/functions/Numpad b/components/functions/Numpad
deleted file mode 100644
index b694ee3..0000000
--- a/components/functions/Numpad
+++ /dev/null
@@ -1,57 +0,0 @@
-# Numpad
-
-# ---------------------------------------------------------------------------
-# Focus functions
-DestroyFunc Window-FocusInDirection
-AddToFunc Window-FocusInDirection
-+ I Direction $0 (CurrentPage, AnyScreen, AcceptsFocus, !Iconic) Focus
-
-DestroyFunc Window-FocusAndRaiseInDirection
-AddToFunc Window-FocusAndRaiseInDirection
-+ I Direction $0 (CurrentPage, AnyScreen, AcceptsFocus, !Iconic) Focus
-+ I Current (Focused) Raise
-
-# ---------------------------------------------------------------------------
-# Move functions
-DestroyFunc Window-MPAnimatedMove
-AddToFunc Window-MPAnimatedMove
-+ I Current (HasPointer) AnimatedMove $0 $1 Warp
-+ I TestRc (NoMatch) AnimatedMove $0 $1
-
-DestroyFunc Window-Warp-CenterCenter
-AddToFunc Window-Warp-CenterCenter
-+ I Current Piperead 'echo Window-MPAnimatedMove `expr $[vp.width] / 2 - $[w.width] / 2`p `expr $[vp.height] / 2 - $[w.height] / 2`p'
-
-DestroyFunc Window-Warp-LeftCenter
-AddToFunc Window-Warp-LeftCenter
-+ I Current Piperead 'echo Window-MPAnimatedMove $[EWMH_BS_Panel_Left]p `expr $[vp.height] / 2 - $[w.height] / 2`p'
-
-DestroyFunc Window-Warp-LeftTop
-AddToFunc Window-Warp-LeftTop
-+ I Current Window-MPAnimatedMove $[EWMH_BS_Panel_Left]p $[EWMH_BS_Panel_Top]p
-
-DestroyFunc Window-Warp-CenterTop
-AddToFunc Window-Warp-CenterTop
-+ I Current Piperead 'echo Window-MPAnimatedMove `expr $[vp.width] / 2 - $[w.width] / 2`p $[EWMH_BS_Panel_Top]p'
-
-DestroyFunc Window-Warp-RightTop
-AddToFunc Window-Warp-RightTop
-+ I Current Piperead 'echo Window-MPAnimatedMove `expr $[vp.width] - $[EWMH_BS_Panel_Right] - $[w.width]`p $[EWMH_BS_Panel_Top]p'
-
-DestroyFunc Window-Warp-RightCenter
-AddToFunc Window-Warp-RightCenter
-+ I Current Piperead 'echo Window-MPAnimatedMove `expr $[vp.width] - $[EWMH_BS_Panel_Right] - $[w.width]`p `expr $[vp.height] / 2 - $[w.height] / 2`p'
-
-DestroyFunc Window-Warp-CenterBottom
-AddToFunc Window-Warp-CenterBottom
-+ I Current Piperead 'echo Window-MPAnimatedMove `expr $[vp.width] / 2 - $[w.width] / 2`p `expr $[vp.height] - $[EWMH_BS_Panel_Bottom] - $[w.height]`p'
-
-DestroyFunc Window-Warp-LeftBottom
-AddToFunc Window-Warp-LeftBottom
-+ I Current Piperead 'echo Window-MPAnimatedMove $[EWMH_BS_Panel_Left]p `expr $[vp.height] - $[EWMH_BS_Panel_Bottom] - $[w.height]`p'
-
-DestroyFunc Window-Warp-RightBottom
-AddToFunc Window-Warp-RightBottom
-+ I Current Piperead 'echo Window-MPAnimatedMove `expr $[vp.width] - $[EWMH_BS_Panel_Right] - $[w.width]`p `expr $[vp.height] - $[EWMH_BS_Panel_Bottom] - $[w.height]`p'
-
-# vim:ft=fvwm