summaryrefslogtreecommitdiff
path: root/autostart
blob: a0b4919fb34bbe5110cf909503d8de73fbdbd73f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/mksh

netcat -U dotwm.sock <<EOF
bind Mod4 p exec dmenu_run 
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 Tab focus-next
EOF