Skip to content

Commit

Permalink
Merged all my autohotkey scripts to this git folder!
Browse files Browse the repository at this point in the history
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
drshajul committed Dec 11, 2010
1 parent 7204475 commit 6dddb88
Show file tree
Hide file tree
Showing 65 changed files with 26,769 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
_Temp/
_Temp/*
_Temp/*
Scriplets/blatant/
Scriplets/blatant/*
30 changes: 30 additions & 0 deletions Gems/Alarm.ahk
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
1,915 changes: 1,915 additions & 0 deletions Gems/Autohotkey Window Spy.ahk

Large diffs are not rendered by default.

57 changes: 57 additions & 0 deletions Gems/Autohotkey Window Spy.ini
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
Loading

0 comments on commit 6dddb88

Please sign in to comment.