aboutsummaryrefslogtreecommitdiff
path: root/autostart
diff options
context:
space:
mode:
authorMatias Linares <matiaslina@openmailbox.org>2015-11-29 11:57:19 -0300
committerMatias Linares <matiaslina@openmailbox.org>2015-11-29 11:57:48 -0300
commitd5e55aab6499a89e9dfaf5b976938bfe3e2f6aee (patch)
tree52efc28076c31fdd2522ed8b7871a7dd99ad0c87 /autostart
parente1ec354306742a5804a20e2651cf49945cd17287 (diff)
downloaddotwm-d5e55aab6499a89e9dfaf5b976938bfe3e2f6aee.tar.gz
Begin ef EWMH support and sticky movement
The implementationn of the EWMH and ICCCM support is incomplete. I need to check how to implement on the right way.
Diffstat (limited to 'autostart')
-rwxr-xr-xautostart15
1 files changed, 10 insertions, 5 deletions
diff --git a/autostart b/autostart
index a0b4919..3957d67 100755
--- a/autostart
+++ b/autostart
@@ -2,21 +2,26 @@
netcat -U dotwm.sock <<EOF
bind Mod4 p exec dmenu_run
+bind Mod4 Return exec xterm
+bind Mod4 f fullscreen
+
bind Mod4 h move-win -10 0
bind Mod4 j move-win 0 10
bind Mod4 k move-win 0 -10
bind Mod4 l move-win 10 0
-bind Mod4 Return exec xterm
bind Mod4-Control h resize-win -10 0
bind Mod4-Control j resize-win 0 10
bind Mod4-Control k resize-win 0 -10
bind Mod4-Control l resize-win 10 0
-bind Mod4-Shift h move-win-to 0 0
-bind Mod4-Shift j move-win-to 100 100
-bind Mod4-Shift k move-win-to 200 200
-bind Mod4-Shift l move-win-to 0 1000
+bind Mod4-Shift h move-win-sticky left
+bind Mod4-Shift j move-win-sticky down
+bind Mod4-Shift k move-win-sticky up
+bind Mod4-Shift l move-win-sticky right
+
+bind Mod4-Shift c close-win
bind Mod4 Tab focus-next
+
EOF