From 390e78655fd11144aa9b3f019b4b6a9ad2690474 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karel=20Ko=C4=8D=C3=AD?= Date: Sun, 27 Aug 2017 13:33:11 +0200 Subject: Revert "On bandwidth accept unknown state" This reverts commit da70bfe2b9d4c6f95276c0a0a68f1a0d8b42e5fb. --- config/i3blocks/scripts/bandwidth | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) (limited to 'config/i3blocks/scripts') diff --git a/config/i3blocks/scripts/bandwidth b/config/i3blocks/scripts/bandwidth index 93023c7..ba15a27 100755 --- a/config/i3blocks/scripts/bandwidth +++ b/config/i3blocks/scripts/bandwidth @@ -19,15 +19,12 @@ INTERFACE=$(ip route | awk '/^default .* (wlp|enp)/ { print $5 ; exit }') # Issue #36 compliant. -if ! [ -e "/sys/class/net/${INTERFACE}/operstate" ]; then - ST="`cat /sys/class/net/${INTERFACE}/operstate`" - # Note: usb telephone network is reported as unknown state - if [ "$ST" = "up" -o "$ST" = "unknown" ]; then - echo down # full text - echo down # short text - echo \#FF0000 # color - exit 0 - fi +if ! [ -e "/sys/class/net/${INTERFACE}/operstate" ] || ! [ "`cat /sys/class/net/${INTERFACE}/operstate`" = "up" ] +then + echo down # full text + echo down # short text + echo \#FF0000 # color + exit 0 fi # path to store the old results in -- cgit v1.2.3