pgj / freebsd-wifibox

wifibox: Use Linux to drive your wireless card on FreeBSD
BSD 2-Clause "Simplified" License
159 stars 12 forks source link

To get live information about the connection I made a conky script that looks like this.. #44

Closed krolingo closed 1 year ago

krolingo commented 1 year ago

Screenshot from 2023-02-01 01-57-45

krolingo commented 1 year ago

`#!/bin/sh

while true; do wpa_cli status | grep "ip_address" | awk '{ sub("ip_address=", "", $1); print $1 }' > /tmp/wifibox_ip bssid=$(wpa_cli status | grep "bssid=" | awk '{ sub("bssid=", "", $1); print $1 }') printf "%s" "$bssid" > /tmp/wifibox_bssid ~/bin/wifi_strength.sh > /tmp/wifibox_signal_strenght sleep 5 done `

pgj commented 1 year ago

Oh, that is nice! @krolingo would you like to me to include this script?

krolingo commented 1 year ago

Oh, that is nice! @krolingo would you like to me to include this script?

I posted about it on my blog: https://eldapper.wordpress.com/2023/01/30/my-freebsd-dashboard/

You decide to do with it whatever you want ;)

And thank you for Wifibox! it has made my FreeBSD experience 100% better

pgj commented 1 year ago

I still could not decide how to carry on with this, but I will leave this issue open as a pointer for others for now.