mirror of
https://github.com/LukeSmithxyz/voidrice.git
synced 2026-03-20 01:37:45 +01:00
8 lines
114 B
Bash
Executable File
8 lines
114 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ "$(systemctl is-active bluetooth.service)" = "active" ]; then
|
|
echo "#1"
|
|
else
|
|
echo "#2"
|
|
fi
|