1
Gemini PDA - Linux / Re: TUTORIAL - complete DEBIAN INSTALL with 4G working
« on: January 11, 2022, 12:08:39 pm »
Thank very much for the sharing. Great guide to revive my gemini with only linux.
YS Tan
YS Tan
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Does anyone know how to modify this script to toggle bluetooth?
#!/bin/sh
if connmanctl technologies | grep -zoP "bluetooth\n Powered = True\n"
then
connmanctl disable bluetooth
else
connmanctl enable bluetooth
fi
exit 0