-
Notifications
You must be signed in to change notification settings - Fork 5
/
UAWKS.ahk
42 lines (33 loc) · 1.74 KB
/
UAWKS.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
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; ;;
;; Unofficial Apple Wireless Keyboard Support ;;
;; http://code.google.com/p/uawks/ ;;
;; ;;
;; Version 2008.09.17 ;;
;; ;;
;; by Brian Jorgensen ;;
;; (based on work by Leon, Veil and Micha) ;;
;; ;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; ;;
;; See Readme.txt for info on installation and customization ;;
;; ;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
SetWorkingDir %A_ScriptDir%
#SingleInstance force
#KeyHistory 100
#NoEnv
;; Notification icon and menu, config file
#Include User Preferences.ahk
;; Interface with the bluetooth HID driver
#Include FnMapper.ahk
;; Convenience functions, volume overlay GUI
#Include AWK Library.ahk
;; Key bindings start here (they have to go after
;; the 'autoexecute' stuff above)
#Include System Keys.ahk
#Include Media Keys.ahk
#Include Navigation Keys.ahk
;; Put your custom bindings in "User Keys.ahk"
;; if possible:
#Include User Keys.ahk