From 9b2e29f5f0d8b22d25c9a4b3a387b79819474507 Mon Sep 17 00:00:00 2001 From: Armaan Bhojwani <3fb650a9-b47e-4604-a282-1dd91953b2ee@anonaddy.me> Date: Fri, 30 Oct 2020 11:59:49 -0400 Subject: [PATCH] made smarter --- status | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/status b/status index 98e0614..292d714 100755 --- a/status +++ b/status @@ -1,13 +1,17 @@ #!/usr/bin/env bash - + function time_set() { - date +%A", "%b" "%e" | "%r + date +%A", "%b" "%e", "%r } function power_set() { upower -d | grep percentage | tail -c 5 - echo " battery," - upower --dump | grep "time to empty" | tail -c 15 + if [[ $(upower -d | grep "discharging") ]]; then + echo " battery," + echo $(upower -d | grep "time to empty" | tail -c 15) remaining + else + echo " battery" + fi } -notify-send -i "clock" "`echo $(time_set)`" "`echo $(power_set) remaining`" +notify-send -i "clock" "`echo $(time_set)`" "`echo $(power_set)`" -- 2.39.2