You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
415 B
24 lines
415 B
; Script can be directly run by or compiled into an .exe by the open-source software AutoHotkey
|
|
; https://www.autohotkey.com
|
|
|
|
;
|
|
; Front Matter
|
|
;
|
|
|
|
; Include general library
|
|
#Include ../lib/Prelude.ahk
|
|
|
|
; Keep script running
|
|
#Persistent
|
|
|
|
SetTimer, Autosave, 300000
|
|
|
|
Autosave:
|
|
Send {Ctrl down}
|
|
Sleep 50
|
|
Send {s down}
|
|
Sleep 50
|
|
Send {s up}
|
|
Sleep 50
|
|
Send {Ctrl up}
|
|
SetTimer, Autosave, On
|