From 51e5e39bbd52f8ee4fece9e665b556429eb4d0ef Mon Sep 17 00:00:00 2001 From: Mart Lubbers Date: Wed, 21 Nov 2018 09:35:20 +0100 Subject: [PATCH] fix bar for desktop --- x/.local/bin/bar | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/x/.local/bin/bar b/x/.local/bin/bar index f210c49..bc01c54 100755 --- a/x/.local/bin/bar +++ b/x/.local/bin/bar @@ -1,10 +1,12 @@ #!/bin/sh -for f in /sys/class/power_supply/BAT*/uevent; do - eval $(grep -v " " "$f") - bat="$bat⚡$((POWER_SUPPLY_CHARGE_NOW*100/POWER_SUPPLY_CHARGE_FULL))% ($POWER_SUPPLY_STATUS) | " -done +if stat -t /sys/class/power_supply/BAT*/uevent >/dev/null 2>&1; then + for f in /sys/class/power_supply/BAT*/uevent; do + eval $(grep -v " " "$f") + bat="$bat⚡$((POWER_SUPPLY_CHARGE_NOW*100/POWER_SUPPLY_CHARGE_FULL))% ($POWER_SUPPLY_STATUS) | " + done +fi -for int in $(ip link show | grep -Po '(?<=.: )\S+(?=:)'); do +for int in $(ip link show | grep -Po '(?<=.: )[A-Za-z0-9]+(?=:)'); do if [ $(ip addr show dev $int | grep -Po "(?<=link/)\S+ ") = "ether" ]; then net="$net$int: " if /sbin/iwconfig $int >/dev/null 2>&1; then -- 2.20.1