-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathf13.ahk
55 lines (46 loc) · 1.33 KB
/
f13.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
/*
* * * Compile_AHK SETTINGS BEGIN * * *
[AHK2EXE]
Exe_File=%In_Dir%\F13.exe
Execution_Level=4
[VERSION]
Set_Version_Info=1
File_Description=toggles F12 with F13 to config push to talk with a blind key. Start F13.exe and double click on F13.exe icon in system tray or right click them and select F12/F13 outo the menu. The task icon changes from green F12 to red F13 and reversed to show what happens when you press the physical F12 key.
File_Version=0.0.0.3
Inc_File_Version=1
Internal_Name=TexMex
Legal_Copyright=https://github.com/BNK3R-Boy/F13
Original_Filename=F13.exe
Product_Name=F13
Product_Version=0.0.0.1
Set_AHK_Version=1
Language_ID=63
[ICONS]
Icon_1=%In_Dir%\f13.ico
Icon_2=%In_Dir%\f13.ico
Icon_3=%In_Dir%\f12.ico
* * * Compile_AHK SETTINGS END * * *
*/
#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.
#Persistent
DEV:=0
Menu, Tray, NoStandard
Menu, Tray, Add , F12/F13, SuS
if (DEV)
Menu, Tray, Add , Reload, Rel
Menu, Tray, Add , Exit, Exi
Menu, Tray, Default, F12/F13
GoTo,Sus
Sus:
Suspend, Toggle
Return
Rel:
Reload
Return
Exi:
ExitApp
Return
F12::F13