Hildr is a tracker of your time spent playing games.
Hildr checks if a process from the list is running, and if it finds one, it records the time.
Ready to run executables here
It is assumed that you add Hildr to startup - in this case, you need to download the no-console version and add the exe file to startup. Also, do not forget to add the file name of your game to the text file with games (games.txt)
For example, if you are playing in Kingdom Come: Deliverance, so you need to add the line KingdomCome.exe to the games.txt file
You will definitely find it if you google *YourGame* exe file
Tips: or you can start the game and find the file in running processes
- Install requirements
python3 -m pip install -r requirements.txt
- Add the main binary file of your game to the
games.txt - Run program
python3 main.py
- Install cx_freeze, psutil
- In the setup.py file change
base = "Console"tobase = 'Win32GUI'
- In the setup.py file change
base = "Win32GUI"tobase = 'Console'
- Run
python setup.py buildOR if you want get the MSI filepython setup.py bdist_msi
