From 2c2ecad91178443bcda1236261ca543aa77d876a Mon Sep 17 00:00:00 2001 From: then Date: Fri, 29 May 2020 15:39:29 +0200 Subject: [PATCH] added audible 'beep' Added audio beep (bell) to make it is easier to interact with the button while the laptop lid is closed --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 5aa23e2..3392ecd 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,8 @@ Make use of that physical button on the side of your laptop to run scripts inst while true; do if iwconfig wlp2s0 | grep 'Tx-Power=off' > /dev/null; then - echo "Wifi is OFF" + echo -e '\a' #beep to indicate interaction + echo "Wifi is OFF" break else echo "Wifi is ON"