Automatically find network interfaces.
Signed-off-by: Nicolás Ortega Froysa <nicolas@ortegas.org>
This commit is contained in:
parent
3c883b3808
commit
7c71b8b614
@ -1,7 +1,18 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
|
for ifname in $(ls /sys/class/net/ | grep -v 'lo')
|
||||||
|
do
|
||||||
|
if ! [ -f "/sys/class/net/$ifname/operstate" ]
|
||||||
|
then
|
||||||
|
>&2 echo "$ifname has no operstate"
|
||||||
|
continue
|
||||||
|
fi
|
||||||
|
IF_STATUS=$(cat /sys/class/net/$ifname/operstate)
|
||||||
|
IF_STATE_LIST+=("$ifname: $IF_STATUS")
|
||||||
|
done
|
||||||
|
|
||||||
DATE="$(date +"%F %H:%M" )"
|
DATE="$(date +"%F %H:%M" )"
|
||||||
NETWORK="eth: $(cat /sys/class/net/enp34s0/operstate)"
|
NETWORK="${IF_STATE_LIST[*]}"
|
||||||
SPACE="$(cat $HOME/.cache/free-space)"
|
SPACE="$(cat $HOME/.cache/free-space)"
|
||||||
vol_status="$(cat $HOME/.cache/audio-control/vol_status)"
|
vol_status="$(cat $HOME/.cache/audio-control/vol_status)"
|
||||||
vol_level="$(cat $HOME/.cache/audio-control/vol_level)%"
|
vol_level="$(cat $HOME/.cache/audio-control/vol_level)%"
|
||||||
|
Loading…
Reference in New Issue
Block a user