”new” scripts

This commit is contained in:
2025-09-03 10:48:26 +02:00
parent 723cfa528d
commit 45b0995b68
5 changed files with 568 additions and 0 deletions

6
bin/§bluetooth-toggle.sh Executable file
View File

@@ -0,0 +1,6 @@
#!/usr/bin/env bash
if bluetoothctl show | grep -q 'Powered: no'; then
bluetoothctl power on
else
bluetoothctl power off
fi