slackbuilds_ponce/desktop/spectrwm/examples/wifi_link_quality.sh
LEVAI Daniel dec4a7c0b0 desktop/spectrwm: Updated for version 2.2.0.
Signed-off-by: dsomero <xgizzmo@slackbuilds.org>
2013-04-28 12:30:03 -03:00

10 lines
309 B
Bash

#!/bin/sh
wlan_int=wlan0
/sbin/ip link show dev ${wlan_int} >/dev/null 2>&1 || exit 1
/sbin/ip link show dev ${wlan_int} 2>&1 |fgrep -q -e"state DOWN" && exit 1
LINK_QUALITY=$( /sbin/iwconfig "${wlan_int}" 2>&1 |fgrep -e'Link Quality' |tr -s ' ' |cut -d' ' -f3 |cut -d= -f2 )
echo "{${LINK_QUALITY}}"