From 6c2a6527cfade0d5e226741691bfe037189e277b Mon Sep 17 00:00:00 2001 From: FURK4NGG <105324908+FURK4NGG@users.noreply.github.com> Date: Fri, 16 Jan 2026 20:50:24 +0300 Subject: [PATCH] Update wifi-bt.sh --- .config/scripts/wifi-bt.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.config/scripts/wifi-bt.sh b/.config/scripts/wifi-bt.sh index 3157f48..a2a119d 100644 --- a/.config/scripts/wifi-bt.sh +++ b/.config/scripts/wifi-bt.sh @@ -7,10 +7,12 @@ case "$1" in if [ "$WIFI_STATUS" = "enabled" ]; then nmcli radio wifi off pkill nm-applet + echo "Wifi Disabled" else nmcli radio wifi on sleep 0.3 nm-applet & + echo "Wifi Enabled" fi ;; @@ -19,8 +21,10 @@ case "$1" in if [ "$BT_STATUS" = "yes" ]; then bluetoothctl power off + echo "Bluetooth Disabled" else bluetoothctl power on + echo "Bluetooth Enabled" fi ;;