From 2d8063981b65aee20addab1efa2aa907beb72a6e Mon Sep 17 00:00:00 2001 From: Stephen Date: Fri, 27 Nov 2020 10:53:46 -0800 Subject: [PATCH] now works with more than one network device --- aliases | 2 +- functions | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/aliases b/aliases index 9a5202e..080b51c 100644 --- a/aliases +++ b/aliases @@ -39,7 +39,7 @@ alias gcc="gcc -g" alias hora='date "+%H:%M:%S"' alias ap="open /Applications/AirPods.app" alias wthr='curl wttr.in/san_luis_obispo' -alias nf='cl; neofetch; system_profiler SPSoftwareDataType | grep "System Version" | cut -d " " -f9 -f10 -f11| figlet -w 100; shownetinfo && lab && batt' +alias nf='cl; neofetch; neofetch | grep OS | cut -d " " -f2 -f3 -f4 -f5 -f6 | figlet -w 100; shownetinfo && lab && batt' # School alias glp='~/Development/gp.sh' diff --git a/functions b/functions index 1b17cf0..3475054 100644 --- a/functions +++ b/functions @@ -9,7 +9,7 @@ function shownetinfo() { GW=$(ip route | grep default | cut -d " " -f3) elif [ "$OSTYPE" = "Darwin" ]; then NET=$(system_profiler SPNetworkDataType | grep "Router:" | cut -c 19-30 | head -1) - IP=$(ifconfig en0 | grep -v "127.0.0.1" | grep "inet " | head -1 | cut -d " " -f2) + IP=$(ifconfig | grep -v "127.0.0.1" | grep "inet " | head -1 | cut -d " " -f2) if [ "$NET" != "" ]; then GW=$(dig +short myip.opendns.com @resolver1.opendns.com) fi