mirror of
https://git.adityakumar.xyz/dwmbar.git
synced 2025-03-13 00:56:13 +00:00
20 lines
278 B
Text
20 lines
278 B
Text
![]() |
#!/bin/bash
|
||
|
|
||
|
# Prints out the bluetooth status
|
||
|
|
||
|
BLUETOOTH_ON_ICON=''
|
||
|
BLUETOOTH_OFF_ICON=''
|
||
|
|
||
|
get_bluetooth()
|
||
|
{
|
||
|
status=$(systemctl is-active bluetooth.service)
|
||
|
|
||
|
if [ "$status" == "active" ]
|
||
|
then
|
||
|
echo ""
|
||
|
else
|
||
|
:
|
||
|
#echo ""
|
||
|
fi
|
||
|
}
|