Skip to content
/ Hildr Public

Hildr is a tracker of your time spent playing games.

License

Notifications You must be signed in to change notification settings

viktor02/Hildr

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Hildr

Hildr is a tracker of your time spent playing games.

How its work

Hildr checks if a process from the list is running, and if it finds one, it records the time.

How to install

I have Windows, what to do

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

Where can I get the file name?

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

How to install manually (Linux, Windows, Mac?)

  1. Install requirements
python3 -m pip install -r requirements.txt
  1. Add the main binary file of your game to the games.txt
  2. Run program python3 main.py

How to build with cx_freeze

Install requirements

  1. Install cx_freeze, psutil

Build no-console

  1. In the setup.py file change base = "Console" to base = 'Win32GUI'

Build with console

  1. In the setup.py file change base = "Win32GUI" to base = 'Console'

Run the build-command

  1. Run python setup.py build OR if you want get the MSI file python setup.py bdist_msi