├── .github └── workflows │ └── python-publish.yml ├── .gitmodules ├── 45dd60cb7ef14bd4bfeb4c9061919e67.png ├── CONSTANTS.py ├── LICENSE.txt ├── README.md ├── SECURITY.md ├── __init__.py ├── __pycache__ ├── CONSTANTS.cpython-310.pyc ├── __init__.cpython-310.pyc ├── info.cpython-310.pyc └── mac_terminal.cpython-310.pyc ├── alerts_cmd.sh ├── audio_cmd.sh ├── camera_cmd.sh ├── exceptions.py ├── info.py ├── install_dependencies.sh ├── macos ├── CONSTANTS.py ├── __init__.py ├── app_config.py ├── app_system.py ├── audiorecorder.py ├── background_screen.py ├── bluetooth.py ├── brightness.py ├── buffer.py ├── devices.py ├── exceptions.py ├── file_config.py ├── illumination.py ├── mouse.py ├── notifier.py ├── open.py ├── password.py ├── rotate.py ├── sound.py ├── sys_config.py ├── theme.py ├── usb.py ├── volume.py ├── webcamera.py └── wifi.py ├── voices.txt └── windows ├── __init__.py ├── brightness.py ├── exceptions.py ├── notifier.py └── password.py /.github/workflows/python-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexandro1112/driver_controller/HEAD/.github/workflows/python-publish.yml -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexandro1112/driver_controller/HEAD/.gitmodules -------------------------------------------------------------------------------- /45dd60cb7ef14bd4bfeb4c9061919e67.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexandro1112/driver_controller/HEAD/45dd60cb7ef14bd4bfeb4c9061919e67.png -------------------------------------------------------------------------------- /CONSTANTS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexandro1112/driver_controller/HEAD/CONSTANTS.py -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexandro1112/driver_controller/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexandro1112/driver_controller/HEAD/SECURITY.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexandro1112/driver_controller/HEAD/__init__.py -------------------------------------------------------------------------------- /__pycache__/CONSTANTS.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexandro1112/driver_controller/HEAD/__pycache__/CONSTANTS.cpython-310.pyc -------------------------------------------------------------------------------- /__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexandro1112/driver_controller/HEAD/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /__pycache__/info.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexandro1112/driver_controller/HEAD/__pycache__/info.cpython-310.pyc -------------------------------------------------------------------------------- /__pycache__/mac_terminal.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexandro1112/driver_controller/HEAD/__pycache__/mac_terminal.cpython-310.pyc -------------------------------------------------------------------------------- /alerts_cmd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexandro1112/driver_controller/HEAD/alerts_cmd.sh -------------------------------------------------------------------------------- /audio_cmd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexandro1112/driver_controller/HEAD/audio_cmd.sh -------------------------------------------------------------------------------- /camera_cmd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexandro1112/driver_controller/HEAD/camera_cmd.sh -------------------------------------------------------------------------------- /exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexandro1112/driver_controller/HEAD/exceptions.py -------------------------------------------------------------------------------- /info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexandro1112/driver_controller/HEAD/info.py -------------------------------------------------------------------------------- /install_dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexandro1112/driver_controller/HEAD/install_dependencies.sh -------------------------------------------------------------------------------- /macos/CONSTANTS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexandro1112/driver_controller/HEAD/macos/CONSTANTS.py -------------------------------------------------------------------------------- /macos/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /macos/app_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexandro1112/driver_controller/HEAD/macos/app_config.py -------------------------------------------------------------------------------- /macos/app_system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexandro1112/driver_controller/HEAD/macos/app_system.py -------------------------------------------------------------------------------- /macos/audiorecorder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexandro1112/driver_controller/HEAD/macos/audiorecorder.py -------------------------------------------------------------------------------- /macos/background_screen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexandro1112/driver_controller/HEAD/macos/background_screen.py -------------------------------------------------------------------------------- /macos/bluetooth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexandro1112/driver_controller/HEAD/macos/bluetooth.py -------------------------------------------------------------------------------- /macos/brightness.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexandro1112/driver_controller/HEAD/macos/brightness.py -------------------------------------------------------------------------------- /macos/buffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexandro1112/driver_controller/HEAD/macos/buffer.py -------------------------------------------------------------------------------- /macos/devices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexandro1112/driver_controller/HEAD/macos/devices.py -------------------------------------------------------------------------------- /macos/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexandro1112/driver_controller/HEAD/macos/exceptions.py -------------------------------------------------------------------------------- /macos/file_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexandro1112/driver_controller/HEAD/macos/file_config.py -------------------------------------------------------------------------------- /macos/illumination.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexandro1112/driver_controller/HEAD/macos/illumination.py -------------------------------------------------------------------------------- /macos/mouse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexandro1112/driver_controller/HEAD/macos/mouse.py -------------------------------------------------------------------------------- /macos/notifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexandro1112/driver_controller/HEAD/macos/notifier.py -------------------------------------------------------------------------------- /macos/open.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexandro1112/driver_controller/HEAD/macos/open.py -------------------------------------------------------------------------------- /macos/password.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexandro1112/driver_controller/HEAD/macos/password.py -------------------------------------------------------------------------------- /macos/rotate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexandro1112/driver_controller/HEAD/macos/rotate.py -------------------------------------------------------------------------------- /macos/sound.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexandro1112/driver_controller/HEAD/macos/sound.py -------------------------------------------------------------------------------- /macos/sys_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexandro1112/driver_controller/HEAD/macos/sys_config.py -------------------------------------------------------------------------------- /macos/theme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexandro1112/driver_controller/HEAD/macos/theme.py -------------------------------------------------------------------------------- /macos/usb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexandro1112/driver_controller/HEAD/macos/usb.py -------------------------------------------------------------------------------- /macos/volume.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexandro1112/driver_controller/HEAD/macos/volume.py -------------------------------------------------------------------------------- /macos/webcamera.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexandro1112/driver_controller/HEAD/macos/webcamera.py -------------------------------------------------------------------------------- /macos/wifi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexandro1112/driver_controller/HEAD/macos/wifi.py -------------------------------------------------------------------------------- /voices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexandro1112/driver_controller/HEAD/voices.txt -------------------------------------------------------------------------------- /windows/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /windows/brightness.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexandro1112/driver_controller/HEAD/windows/brightness.py -------------------------------------------------------------------------------- /windows/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexandro1112/driver_controller/HEAD/windows/exceptions.py -------------------------------------------------------------------------------- /windows/notifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexandro1112/driver_controller/HEAD/windows/notifier.py -------------------------------------------------------------------------------- /windows/password.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexandro1112/driver_controller/HEAD/windows/password.py --------------------------------------------------------------------------------