├── .gitignore ├── README.md ├── _config.yml ├── examples └── sample_osc_profile.yml ├── lifelights.py ├── profiles └── heroes_of_the_storm.yml ├── requirements.txt ├── util └── __init__.py └── widthwatcher └── __init__.py /.gitignore: -------------------------------------------------------------------------------- 1 | **/*.pyc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjensn/lifelights/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjensn/lifelights/HEAD/_config.yml -------------------------------------------------------------------------------- /examples/sample_osc_profile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjensn/lifelights/HEAD/examples/sample_osc_profile.yml -------------------------------------------------------------------------------- /lifelights.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjensn/lifelights/HEAD/lifelights.py -------------------------------------------------------------------------------- /profiles/heroes_of_the_storm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjensn/lifelights/HEAD/profiles/heroes_of_the_storm.yml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjensn/lifelights/HEAD/requirements.txt -------------------------------------------------------------------------------- /util/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjensn/lifelights/HEAD/util/__init__.py -------------------------------------------------------------------------------- /widthwatcher/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjensn/lifelights/HEAD/widthwatcher/__init__.py --------------------------------------------------------------------------------