├── .github ├── FUNDING.yml └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── Bluetooth-Unlock.py ├── LICENSE ├── Notices ├── README.md ├── config.ini └── install.sh /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | liberapay: LethalEthan8 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LethalEthan/Bluetooth-Unlock/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LethalEthan/Bluetooth-Unlock/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /Bluetooth-Unlock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LethalEthan/Bluetooth-Unlock/HEAD/Bluetooth-Unlock.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LethalEthan/Bluetooth-Unlock/HEAD/LICENSE -------------------------------------------------------------------------------- /Notices: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LethalEthan/Bluetooth-Unlock/HEAD/Notices -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LethalEthan/Bluetooth-Unlock/HEAD/README.md -------------------------------------------------------------------------------- /config.ini: -------------------------------------------------------------------------------- 1 | [VERSION] 2 | version = 9.1 3 | -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LethalEthan/Bluetooth-Unlock/HEAD/install.sh --------------------------------------------------------------------------------