In frisbee's gui if you want to resort AP results by clicking ssid column header you end up with eleven empty lines on top!
to avoid empty lines in scan results comment out three lines in /usr/local/frisbee/func
Code: Select all
#############################################
function get_scan_results {
if_connected || return
wpa_cli -i $INTERFACE scan >/dev/null
wpa_cli scan_results -i $INTERFACE | grep ^..:..: | awk -F '\t' '{print $1"|"$2"|"$3"|"$5"|"$4}' | sort -g -r -t \| -k 3 #140607 160801 170621
#for i in 1 2 3 4 5 6 7 8 9 10 11 ; do
#echo
#done
}
export -f get_scan_results
#############################################
I also found i could not disconnect properly from an AP. And the gui takes ages to open when selecting setup networking from the menu. I suspect it waits for scan results, but imho should open immediately to save user from repeated clicks at menu item.