#!/bin/bash# Prints out the bluetooth statusBLUETOOTH_ON_ICON=''BLUETOOTH_OFF_ICON=''
get_bluetooth(){status=$(systemctlis-activebluetooth.service)if["$status"=="active"]thenecho"$BLUETOOTH_ON_ICON"else:
#echo "$BLUETOOTH_OFF_ICON"fi}
get_bluetooth