update for arm linux

This commit is contained in:
Stephen
2021-01-27 14:20:29 -08:00
parent 1c22927508
commit 4d87c74a0d
3 changed files with 46 additions and 43 deletions

View File

@@ -19,6 +19,7 @@ alias gcc="gcc -g"
alias hora='date "+%H:%M:%S"'
alias wthr='curl wttr.in/san_luis_obispo'
alias nf='cl; neofetch; shownetinfo && lab && batt'
alias servers='python3 /Users/smparkin/Development/server_stats/servers.py'
# School
alias 429='cd /Users/smparkin/Library/Mobile\ Documents/com\~apple\~CloudDocs/CalPoly/2020-21/Winter21/CSC429'

View File

@@ -5,7 +5,7 @@ function shownetinfo() {
NET=""
if [ "$OSTYPE" = "Linux" ]; then
IP=$(ifconfig | grep -v "127.0.0.1" | grep "inet " | head -1 | cut -d " " -f10)
IP=$(ip addr show | grep -v "127.0.0.1" | grep "inet " | head -1 | cut -d " " -f6 | cut -d "/" -f1)
NET=$(ip route | grep default | cut -d " " -f3)
elif [ "$OSTYPE" = "Darwin" ]; then
NET=$(system_profiler SPNetworkDataType | grep "Router:" | cut -c 19-30 | head -1)

2
zshrc
View File

@@ -40,6 +40,7 @@ elif [ "$OSTYPE" = "Darwin" ]; then
batt
fi
# configure homebrew for arm and x86
if [ "$OSTYPE" = "Darwin" ]; then
ARCH=$(uname -m)
if [ "$ARCH" = "arm64" ]; then
export PATH="/opt/homebrew/bin:$PATH"
@@ -47,3 +48,4 @@ if [ "$ARCH" = "arm64" ]; then
elif [ "$ARCH" = "x86_64" ]; then
export PATH="/usr/local/bin:$PATH"
fi
fi