; 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