remove lab check

This commit is contained in:
Stephen
2021-01-20 18:01:01 -08:00
parent ed8b08c92f
commit 1c22927508
3 changed files with 19 additions and 20 deletions

View File

@@ -1,5 +1,4 @@
tap "adoptopenjdk/openjdk" tap "adoptopenjdk/openjdk"
tap "cjbassi/gotop"
tap "homebrew/bundle" tap "homebrew/bundle"
tap "homebrew/cask" tap "homebrew/cask"
tap "homebrew/cask-drivers" tap "homebrew/cask-drivers"
@@ -14,7 +13,7 @@ brew "freetype"
brew "fontconfig" brew "fontconfig"
brew "openssl@1.1" brew "openssl@1.1"
brew "xz" brew "xz"
brew "python@3.9" brew "python3"
brew "cmake" brew "cmake"
brew "cmatrix" brew "cmatrix"
brew "cocoapods" brew "cocoapods"
@@ -64,7 +63,6 @@ brew "zsh-completions"
brew "zsh-history-substring-search" brew "zsh-history-substring-search"
brew "zsh-syntax-highlighting" brew "zsh-syntax-highlighting"
brew "zzz" brew "zzz"
brew "cjbassi/gotop/gotop"
cask "adoptopenjdk8" cask "adoptopenjdk8"
cask "appcleaner" cask "appcleaner"
cask "burp-suite" cask "burp-suite"

View File

@@ -18,9 +18,10 @@ alias tn="tmux new-session -s"
alias gcc="gcc -g" alias gcc="gcc -g"
alias hora='date "+%H:%M:%S"' alias hora='date "+%H:%M:%S"'
alias wthr='curl wttr.in/san_luis_obispo' alias wthr='curl wttr.in/san_luis_obispo'
alias nf='cl; neofetch; neofetch | grep OS | cut -d " " -f2 -f3 -f4 -f5 -f6 | figlet -w 100; shownetinfo && lab && batt' alias nf='cl; neofetch; shownetinfo && lab && batt'
# School # School
alias glp='~/Development/gp.sh' alias 429='cd /Users/smparkin/Library/Mobile\ Documents/com\~apple\~CloudDocs/CalPoly/2020-21/Winter21/CSC429'
alias 429='cd "/Users/smparkin/Library/Mobile Documents/com~apple~CloudDocs/CalPoly/2020-21/Fall20/CSC 429"' alias 484='cd /Users/smparkin/Library/Mobile\ Documents/com\~apple\~CloudDocs/CalPoly/2020-21/Winter21/CSC484'
alias 321='cd "/Users/smparkin/Library/Mobile Documents/com~apple~CloudDocs/CalPoly/2020-21/Fall20/CPE 321"' alias 402='cd /Users/smparkin/Library/Mobile\ Documents/com\~apple\~CloudDocs/CalPoly/2020-21/Winter21/CSC402'
alias 217='cd /Users/smparkin/Library/Mobile\ Documents/com\~apple\~CloudDocs/CalPoly/2020-21/Winter21/COMS217'

16
zshrc
View File

@@ -31,15 +31,7 @@ if [ "$OSTYPE" = "Darwin" ]; then
source ~/.iterm2_shell_integration.zsh source ~/.iterm2_shell_integration.zsh
fi fi
export DEVKITPRO=/opt/devkitpro
export DEVKITARM=${DEVKITPRO}/devkitARM
export DEVKITPPC=${DEVKITPRO}/devkitPPC
export PATH=${DEVKITPRO}/tools/bin:$PATH
export EDITOR="/usr/local/bin/vim" export EDITOR="/usr/local/bin/vim"
export PATH="/usr/local/sbin:$PATH"
export PATH="/usr/local/opt/openssl/bin:$PATH"
shownetinfo shownetinfo
if [ "$OSTYPE" = "Linux" ]; then if [ "$OSTYPE" = "Linux" ]; then
echo "" echo ""
@@ -47,3 +39,11 @@ elif [ "$OSTYPE" = "Darwin" ]; then
ssh-add -K ~/.ssh/id_rsa 2>/dev/null ssh-add -K ~/.ssh/id_rsa 2>/dev/null
batt batt
fi fi
# configure homebrew for arm and x86
ARCH=$(uname -m)
if [ "$ARCH" = "arm64" ]; then
export PATH="/opt/homebrew/bin:$PATH"
export PATH="/opt/homebrew/sbin:$PATH"
elif [ "$ARCH" = "x86_64" ]; then
export PATH="/usr/local/bin:$PATH"
fi