-
Notifications
You must be signed in to change notification settings - Fork 0
/
binds.ahk
57 lines (44 loc) · 840 Bytes
/
binds.ahk
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
;; run this script to prevent default windows actions from happening :(
#SingleInstance force
;;;;;;;;;;;;
;; tiling ;;
;;;;;;;;;;;;
;; tile w/ default scheme
#Z:: Send !{F5}
;; untile
#X:: Send !{F6}
;; rotate tile type
#D:: Send !{F7}
;; tile horiz
#A:: Send !{F8}
;; tile vert
#S:: Send !{F9}
;; tile mono
#C:: Send ^{F6}
;; edit split ratios
#F:: Send !{F10}
;; draw menu
#Q:: Send !{F11}
;; draw workspaces
#W:: Send !{F12}
;;;;;;;;;;;;;;
;; movement ;;
;;;;;;;;;;;;;;
#up:: Send {Blind}#{F5}
#down:: Send {Blind}#{F6}
#left:: Send {Blind}#{F7}
#right:: Send {Blind}#{F8}
;;;;;;;;;;;;;;
;; swapping ;;
;;;;;;;;;;;;;;
#^up:: Send #{F9}
#^down:: Send #{F10}
#^left:: Send #{F11}
#^right:: Send #{F12}
;;;;;;;;;;;;;;;;
;; workspaces ;;
;;;;;;;;;;;;;;;;
^!1:: Send #{F2}
^!2:: Send #{F3}
^!3:: Send #{F4}
#Home:: Send !^{Home}