mirror of
https://github.com/basecamp/omarchy.git
synced 2026-02-17 15:25:37 +00:00
7 lines
270 B
Bash
7 lines
270 B
Bash
echo "Hide Bluetooth module in waybar if there's no BT controller"
|
|
|
|
if ! grep -q "format-no-controller" ~/.config/waybar/config.jsonc; then
|
|
sed -i '/format-connected": "",/a\ "format-no-controller": "",' ~/.config/waybar/config.jsonc
|
|
omarchy-restart-waybar
|
|
fi
|