From ae73ed6dc63ad182ffcfecdf2a464bede4b33ff0 Mon Sep 17 00:00:00 2001 From: Aryadev Chavali Date: Tue, 23 Apr 2024 17:06:01 +0530 Subject: (Scripts/status)~bluetooth-status now prints battery info if found --- Scripts/.local/scripts/status/bluetooth-status | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'Scripts/.local/scripts/status/bluetooth-status') diff --git a/Scripts/.local/scripts/status/bluetooth-status b/Scripts/.local/scripts/status/bluetooth-status index c34694c..6de5422 100755 --- a/Scripts/.local/scripts/status/bluetooth-status +++ b/Scripts/.local/scripts/status/bluetooth-status @@ -1,9 +1,15 @@ #!/usr/bin/env sh name=$(bluetoothctl info | grep "Name" | sed 's/.*Name: //') +battery=$(bluetoothctl info | grep "Battery" | sed 's/.*(//;s/)//') if [ ! "$name" ] then echo "" else - echo "" $name; + echo -n "" $name; + if [ "$battery" ] + then + echo -n " ($battery%)" + fi + echo "" fi -- cgit v1.2.3-13-gbd6f