Add dotfiles
This commit is contained in:
parent
49bfe1a4d3
commit
b6e01a720b
52 changed files with 4701 additions and 0 deletions
31
dwmbar/modules/networkdowntraffic
Executable file
31
dwmbar/modules/networkdowntraffic
Executable file
|
@ -0,0 +1,31 @@
|
|||
#!/bin/bash
|
||||
|
||||
# Prints out the current down network traffic in MB
|
||||
|
||||
PREFIX=' '
|
||||
|
||||
get_down_traffic()
|
||||
{
|
||||
RECEIVE1=0
|
||||
RECEIVE2=0
|
||||
|
||||
IFACES=$(ip -o link show | awk -F': ' '{print $2}')
|
||||
for IFACE in $IFACES; do
|
||||
if [ $IFACE != "lo" ]; then
|
||||
RECEIVE1=$(($(ip -s -c link show $IFACE | tail -n3 | head -n 1 | cut -d " " -f5) + $RECEIVE1))
|
||||
fi
|
||||
done
|
||||
|
||||
sleep 1
|
||||
|
||||
IFACES=$(ip -o link show | awk -F': ' '{print $2}')
|
||||
for IFACE in $IFACES; do
|
||||
if [ $IFACE != "lo" ]; then
|
||||
RECEIVE2=$(($(ip -s -c link show $IFACE | tail -n3 | head -n 1 | cut -d " " -f5) + $RECEIVE2))
|
||||
fi
|
||||
done
|
||||
|
||||
echo "$PREFIX$(expr $(expr $RECEIVE2 - $RECEIVE1 ) / 1000)KB/s"
|
||||
}
|
||||
|
||||
get_down_traffic
|
Loading…
Add table
Add a link
Reference in a new issue