* usr/bin/wifi-status:

- use iw and ip rather than ifconfig and iwconfig, which are deprecated
  - https://github.com/dustinkirkland/byobu/pull/24
This commit is contained in:
Dustin Kirkland 2017-09-25 10:10:48 -05:00
commit 7640503f65
2 changed files with 14 additions and 9 deletions

5
debian/changelog vendored
View file

@ -5,6 +5,11 @@ byobu (5.123) unreleased; urgency=medium
- fix typos and errors in the spanish translation
- https://github.com/dustinkirkland/byobu/pull/21
[ Sujeevan Vijayakumaran ]
* usr/bin/wifi-status:
- use iw and ip rather than ifconfig and iwconfig, which are deprecated
- https://github.com/dustinkirkland/byobu/pull/24
-- Dustin Kirkland <kirkland@ubuntu.com> Thu, 17 Aug 2017 18:44:26 -0500
byobu (5.122-0ubuntu1) artful; urgency=medium

View file

@ -22,22 +22,22 @@
trap "pkill -f -9 wifi-status >/dev/null 2>&1; exit 0" EXIT HUP INT QUIT TERM
if [ -z "$1" ]; then
dev=$(iwconfig 2>/dev/null | grep '802.11' | tail -n1 | awk '{print $1}')
dev=$(iw dev|grep Interface|awk '{print $2}')
else
dev="$1"
fi
router=$(route -n | grep "^0.0.0.0" | awk '{print $2}')
router=$(ip route show|head -n 1|awk '{print $3}')
if [ -z "$TMUX" ]; then
watch -n1 "iwconfig $dev; ifconfig $dev; route -n; echo; (grep $dev: /var/log/syslog | tail -n 10 | sort -r); echo; ping -I $dev -c 1 8.8.8.8"
watch -n1 "iw $dev info; ip addr show $dev; ip route; echo; (journalctl -b --no-pager -q | grep -i $dev | tail -n 10 | sort -r); echo; ping -I $dev -c 1 8.8.8.8"
else
tmux new-window -n wifi-status "watch -c iwconfig $dev \| ccze -A" \; \
split-window -t wifi-status -v "watch -c ifconfig $dev \| ccze -A" \; \
split-window -t wifi-status -v "watch -c route -n \| ccze -A" \; \
split-window -t wifi-status -h "ping -OD -I $dev $router" \; \
split-window -t wifi-status -v "watch -c grep $dev: /var/log/syslog \| tail -n 10 \| sort -r \| ccze -A" \; \
split-window -t wifi-status -h "ping -OD -I $dev 8.8.8.8" \; \
tmux new-window -n wifi-status "watch -c iw $dev info \| ccze -A" \; \
split-window -t wifi-status -v "watch -c ip addr show $dev \| ccze -A" \; \
split-window -t wifi-status -v "watch -c ip route \| ccze -A" \; \
split-window -t wifi-status -h "ping -I $dev $router" \; \
split-window -t wifi-status -v "watch -c journalctl -b --no-pager -q \| grep -i $dev \| tail -n 10 \| sort -r \| ccze -A" \; \
split-window -t wifi-status -h "ping -I $dev 8.8.8.8" \; \
select-layout -t wifi-status tiled
fi