mirror of
https://git.adityakumar.xyz/dwmbar.git
synced 2025-03-13 00:56:13 +00:00
32 lines
745 B
Text
32 lines
745 B
Text
![]() |
#!/bin/bash
|
||
|
|
||
|
# Prints out the current down network traffic in DJNADJNA
|
||
|
|
||
|
PREFIX=' '
|
||
|
|
||
|
get_down_traffic()
|
||
|
{
|
||
|
RECIEVE1=0
|
||
|
RECIEVE2=0
|
||
|
|
||
|
IFACES=$(ip -o link show | awk -F': ' '{print $2}')
|
||
|
for IFACE in $IFACES; do
|
||
|
if [ $IFACE != "lo" ]; then
|
||
|
RECIEVE1=$(($(ip -s -c link show wlan0 | tail -n3 | head -n 1 | cut -d " " -f5) + $RECIEVE1))
|
||
|
fi
|
||
|
done
|
||
|
|
||
|
sleep 2
|
||
|
|
||
|
IFACES=$(ip -o link show | awk -F': ' '{print $2}')
|
||
|
for IFACE in $IFACES; do
|
||
|
if [ $IFACE != "lo" ]; then
|
||
|
RECIEVE2=$(($(ip -s -c link show wlan0 | tail -n3 | head -n 1 | cut -d " " -f5) + $RECIEVE2))
|
||
|
fi
|
||
|
done
|
||
|
|
||
|
echo "$PREFIX$(expr $(expr $RECIEVE2 - $RECIEVE1 ) / 1000000)MB"
|
||
|
}
|
||
|
|
||
|
get_down_traffic
|