blob: 3957d676f45d2506d200d7474bbdd249c658a02c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
#!/bin/mksh
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-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-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
|