A minimalist time-tracking python script for windows. Logs 1 minute intervals during which vscode process Code.exe was running and you were not afk.
To install the required packages, run:
pip install -r requirements.txtAdd the following codett.vbs script to the Startup folder:
Set WshShell = CreateObject("WScript.Shell")
WshShell.CurrentDirectory = "C:\path\to\your\desired\working\directory"
WshShell.Run """C:\path\to\python.exe"" ""C:\path\to\time_tracker\main.py""", 0Make sure to replace C:\path\to\your\desired\working\directory as well as C:\path\to\python.exe and C:\path\to\time_tracker\main.py
Generates vscode_time_log.txt in its working directory.