From cd88149245daf8ee8b93bb1cc84e2ab391cc2a1d Mon Sep 17 00:00:00 2001 From: Aargh Rai Date: Sun, 10 May 2026 16:36:21 +0530 Subject: proper bluetooth integration --- quickshell/scripts/bluetooth.sh | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100755 quickshell/scripts/bluetooth.sh (limited to 'quickshell/scripts') diff --git a/quickshell/scripts/bluetooth.sh b/quickshell/scripts/bluetooth.sh new file mode 100755 index 0000000..861e4a3 --- /dev/null +++ b/quickshell/scripts/bluetooth.sh @@ -0,0 +1,9 @@ +#!/usr/bin/env bash + +connected="$(bluetoothctl devices Connected)" + +if [ -z "$connected" ]; then + echo "Offline" +else + echo "$connected" +fi -- cgit v1.2.3