-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merged all my autohotkey scripts to this git folder!
Library - Scripts of interest not created by me Standard Library - Explorer and installer of the libs database by Tuncay Scriplets - My little scriplets and code Gems - Day to day use scripts, present on desktop
- Loading branch information
Showing
65 changed files
with
26,769 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,4 @@ | ||
_Temp/ | ||
_Temp/* | ||
_Temp/* | ||
Scriplets/blatant/ | ||
Scriplets/blatant/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
#Persistent | ||
#SingleInstance ignore | ||
#NoEnv | ||
|
||
|
||
Gui, Add, DateTime, x6 y32 w110 h20 vMyDateTime, Time | ||
Gui, Add, Button, x116 y32 w40 h20 gSetAlarm, &Ok | ||
Gui, Add, Button, x156 y32 w50 h20 gResetAlarm, &Reset | ||
Gui, Add, Text, x6 y12 w200 h20 , Alarm Time: | ||
Gui, Show, Center h64 w215, Alarm | ||
Return | ||
|
||
GuiClose: | ||
ExitApp | ||
|
||
SetAlarm: | ||
Gui, Submit | ||
AlarmTime:=SubStr(MyDateTime, 9, 4 ) | ||
Settimer, Maintimer, 15000 | ||
return | ||
|
||
ResetAlarm: | ||
Settimer, Maintimer, Off | ||
return | ||
|
||
Maintimer: | ||
FormatTime,thistime,,HHmm | ||
If thistime=%AlarmTime% | ||
Run alarm.mp3 | ||
Return |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
[Settings] | ||
SelectedRadList=1 | ||
Gui1Pos=x685 y59 | ||
Gui1AOTState=1 | ||
Tab1=5 | ||
RadWindow=2 | ||
RadControl=2 | ||
ChkShowList=0 | ||
HtkPauseAction=Pause | ||
ChkCopyToCB=1 | ||
ChkHideGui=0 | ||
ChkUseSaveHotkey=0 | ||
[Export] | ||
ChkExportMousePosScreen=1 | ||
ChkExportMousePosAWin=0 | ||
ChkExportMousePosWin=1 | ||
ChkExportMousePointer=0 | ||
ChkExportMouseColorRGB=0 | ||
ChkExportMouseColorHex=0 | ||
ChkExportCtrlText=1 | ||
ChkExportCtrlClass=1 | ||
ChkExportCtrlPos=0 | ||
ChkExportCtrlSize=0 | ||
ChkExportCtrlListItems=0 | ||
ChkExportWinTitle=1 | ||
ChkExportWinPos=0 | ||
ChkExportWinSize=0 | ||
ChkExportWinClass=1 | ||
ChkExportWinProcess=1 | ||
ChkExportWinUID=0 | ||
ChkExportWinPID=0 | ||
ChkExportWinStatusText=1 | ||
ChkExportWinText=1 | ||
ChkExportLargeList=1 | ||
EdtExportFile=AHK_Window_Info_Data_###.txt | ||
ChkExportAutoNumber=1 | ||
ChkExportAppend=0 | ||
[Advanced] | ||
ChkShowInfoToolTip=1 | ||
ChkDrawRectCtrl=0 | ||
ChkDrawRectWin=0 | ||
ChkTtpMaster=0 | ||
ChkTtpMSPos=0 | ||
ChkTtpMWPos=1 | ||
ChkTtpMColor=1 | ||
ChkTtpCClass=1 | ||
ChkTtpCPos=0 | ||
ChkTtpCSize=0 | ||
ChkTtpWClass=1 | ||
ChkTtpWTitle=1 | ||
CbbUpdateInterval=100 | ||
CbbColorPickDim=15x15 | ||
RadColorPick=2 | ||
ChkAutoStartUpdate=1 | ||
CbbHtkUpdate=MButton | ||
RadUpdateOnClick=0 | ||
RadUpdateAuto=1 |
Oops, something went wrong.