gitextract_hr3ssai2/ ├── .gitignore ├── Aurora.py ├── README.md ├── VERSION ├── __init__.py ├── apt-requirements.txt ├── aurora.service ├── extensions/ │ ├── Aurora_Ambient_16x9.py │ ├── Aurora_Ambient_AutoCrop.py │ ├── Aurora_Ambient_NoCrop.py │ ├── Aurora_AudioSpectogram.py │ ├── Aurora_Configure.py │ ├── Aurora_Meteor.py │ ├── Aurora_Rainbow.py │ ├── __init__.py │ └── exampleExtension.py ├── install.sh ├── requirements.txt ├── update.sh └── webserver/ ├── static/ │ ├── css/ │ │ ├── bootstrap.css │ │ └── style.css │ ├── images/ │ │ ├── icons/ │ │ │ └── license.txt │ │ └── undraw/ │ │ └── _license_and_link.rtf │ ├── js/ │ │ ├── aurora-configure.js │ │ ├── aurora-generic.js │ │ ├── aurora-index.js │ │ ├── aurora-view.js │ │ ├── custom.js │ │ └── jquery.js │ └── menu/ │ └── menu-main.html └── templates/ ├── about.html ├── configure.html ├── footer.html ├── header.html ├── index.html ├── menu-colors.html ├── menu-footer.html ├── menu-share.html ├── status.json └── view.html