Update the device (kernel should be >= 6.1)
sudo apt update && sudo apt upgrade -yEnable USB Gadget and g_audio
echo "dtoverlay=dwc2" | sudo tee -a /boot/config.txt| #!/bin/bash | |
| echo "Installing PulseAudio and BT Module" | |
| sudo apt update | |
| sudo apt upgrade -y | |
| sudo apt install -y git pulseaudio pulseaudio-module-bluetooth | |
| systemctl --user enable --now pulseaudio.service | |
| MAC_ADDRESS=<MAC_ADDRESS> | |
| echo "Pairing and connecting to $MAC_ADDRESS" |
| from urllib3.util import connection | |
| def patch_requests_connector(): | |
| _create_connection = connection.create_connection | |
| def patched_create_connection(address, *args, **kwargs): | |
| """ | |
| Patches the create_connection in order to print the hosts. |
| // ==UserScript== | |
| // @name GMail Attachments Check | |
| // @namespace http://tampermonkey.net/ | |
| // @version 0.1 | |
| // @description Alert when unwanted senders or attachments are added to the mail. | |
| // @author rcbadiale | |
| // @match *://mail.google.com/mail/* | |
| // @grant none | |
| // ==/UserScript== |