-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.ahk
49 lines (36 loc) · 1.5 KB
/
main.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
; CREDIT ***********************************************************************
;*******************************************************************************
; Autohotkey Tray App
; author: Frosthaven <shane.stanley1983@gmail.com>
; CONFIG ***********************************************************************
;*******************************************************************************
#Persistent
#UseHook
#MaxThreads 2
#SingleInstance Force
#MaxThreadsPerHotkey 2
SetKeyDelay -1
SetBatchLines -1
; LIB FILES ********************************************************************
;*******************************************************************************
#Include %A_ScriptDir%\lib\Utility.ahk
#Include %A_ScriptDir%\lib\WindowManagement.ahk
#Include %A_ScriptDir%\lib\ProcessManagement.ahk
; INIT HEADER CODE *************************************************************
;*******************************************************************************
; Priority Codes
; ----------------------
; 256 Realtime
; 128 High
; 32768 Above normal
; 32 Normal
; 16384 Below normal
; 64 Low
SetProcessPriorityAndAffinity("audiodg",128,2)
; INIT PROJECT FILES ***********************************************************
;*******************************************************************************
#Include %A_ScriptDir%\src\RenderNotificationTrayMeny.ahk
#Include %A_ScriptDir%\src\PolledEvents.ahk
#Include %A_ScriptDir%\src\Restarts.ahk
#Include %A_ScriptDir%\labels.ahk
#Include %A_ScriptDir%\hotkeys.ahk