-
Notifications
You must be signed in to change notification settings - Fork 0
/
Host.ahk.bak
29 lines (23 loc) · 1009 Bytes
/
Host.ahk.bak
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
; Created by Asger Juul Brunshøj
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
; #Warn ; Enable warnings to assist with detecting common errors.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
#SingleInstance
SetCapsLockState, AlwaysOff
; #InstallKeybdHook
;-------------------------------------------------------
; AUTO EXECUTE SECTION FOR INCLUDED SCRIPTS
; Scripts being included need to have their auto execute
; section in a function or subroutine which is then
; executed below.
;-------------------------------------------------------
Gosub, gui_autoexecute
;-------------------------------------------------------
; END AUTO EXECUTE SECTION
return
;-------------------------------------------------------
; Load the GUI code
#Include %A_ScriptDir%\GUI\GUI.ahk
; General settings
#Include %A_ScriptDir%\Miscellaneous\miscellaneous.ahk