10 lines
223 B
Bash
Executable file
10 lines
223 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
## Make bluetooth status persistent between reboots
|
|
if [[ ! -f "$HOME/.config/.bluetooth" ]]; then
|
|
echo > "$FILE"
|
|
fi
|
|
|
|
if grep -q "$HOME/.config/.bluetooth"; then
|
|
rfkill block bluetooth
|
|
fi
|