make some m1 changes

This commit is contained in:
Stephen Parkinson
2022-03-16 09:55:23 -07:00
parent 28cbbe6ba8
commit 1450fbccff
3 changed files with 16 additions and 17 deletions

View File

@@ -18,18 +18,19 @@ brew "python@3.9"
brew "pkg-config" brew "pkg-config"
brew "cmake" brew "cmake"
brew "cmatrix" brew "cmatrix"
brew "ruby"
brew "cocoapods" brew "cocoapods"
brew "coreutils" brew "coreutils"
brew "gnu-tar" brew "gnu-tar"
brew "dpkg" brew "dpkg"
brew "elinks" brew "elinks"
brew "exiftool" brew "exiftool"
brew "harfbuzz"
brew "sdl2" brew "sdl2"
brew "ffmpeg" brew "ffmpeg"
brew "figlet" brew "figlet"
brew "fortune" brew "fortune"
brew "gcc" brew "gcc"
brew "gdb"
brew "git" brew "git"
brew "gnu-sed" brew "gnu-sed"
brew "go" brew "go"
@@ -43,7 +44,6 @@ brew "libimobiledevice"
brew "librsvg" brew "librsvg"
brew "llvm" brew "llvm"
brew "lolcat" brew "lolcat"
brew "ruby"
brew "macvim" brew "macvim"
brew "mas" brew "mas"
brew "nasm" brew "nasm"
@@ -71,45 +71,44 @@ 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"
cask "adoptopenjdk"
cask "alacritty" cask "alacritty"
cask "android-platform-tools" cask "android-platform-tools"
cask "appcleaner" cask "appcleaner"
cask "burp-suite"
cask "cinebench"
cask "daisydisk" cask "daisydisk"
cask "discord" cask "discord-canary"
cask "dolphin" cask "displaylink"
cask "displaylink-login-extension"
cask "dolphin-dev"
cask "firefox" cask "firefox"
cask "font-fira-code" cask "font-fira-code"
cask "handbrake" cask "handbrake"
cask "hex-fiend" cask "hex-fiend"
cask "iina" cask "iina"
cask "iterm2" cask "makemkv"
cask "melonds" cask "melonds"
cask "minecraft"
cask "mpv"
cask "openemu"
cask "plex"
cask "qbittorrent" cask "qbittorrent"
cask "rectangle" cask "rectangle"
cask "slack" cask "slack"
cask "steam" cask "steam"
cask "visual-studio-code" cask "visual-studio-code"
cask "vlc" cask "vlc"
cask "wireshark"
cask "xquartz" cask "xquartz"
cask "zoom" cask "zoom"
mas "1Password 7", id: 1333542190 mas "1Password 7", id: 1333542190
mas "Dark Noise", id: 1465439395
mas "Dark Reader for Safari", id: 1438243180 mas "Dark Reader for Safari", id: 1438243180
mas "Deliveries", id: 924726344 mas "DaVinci Resolve", id: 571213070
mas "Deliveries", id: 290986013
mas "Developer", id: 640199958
mas "Flighty", id: 1358823008
mas "Jump Desktop", id: 524141863 mas "Jump Desktop", id: 524141863
mas "Keynote", id: 409183694 mas "Keynote", id: 409183694
mas "Notability", id: 360593530 mas "Notability", id: 360593530
mas "Pages", id: 409201541 mas "Pages", id: 409201541
mas "Paste", id: 967805235 mas "Paste", id: 967805235
mas "Tampermonkey", id: 1482490089 mas "TestFlight", id: 899247664
mas "The Unarchiver", id: 425424353 mas "The Unarchiver", id: 425424353
mas "Tripsy", id: 1429967544
mas "Wipr", id: 1320666476 mas "Wipr", id: 1320666476
mas "Xcode", id: 497799835 mas "Xcode", id: 497799835
mas "Yoink", id: 457622435 mas "Yoink", id: 457622435

View File

@@ -14,7 +14,7 @@ function shownetinfo() {
ROUTR=$(system_profiler SPNetworkDataType | grep "Router:" | cut -c 19-30 | head -1) ROUTR=$(system_profiler SPNetworkDataType | grep "Router:" | cut -c 19-30 | head -1)
LANIP=$(ifconfig | grep -v "127.0.0.1" | grep "inet " | head -1 | cut -d " " -f2) LANIP=$(ifconfig | grep -v "127.0.0.1" | grep "inet " | head -1 | cut -d " " -f2)
if [ "$ROUTR" != "" ]; then if [ "$ROUTR" != "" ]; then
WANIP=$(gtimeout 0.25s curl -s icanhazip.com) WANIP=$(gtimeout 0.25s curl -s ipv4.icanhazip.com)
fi fi
fi fi
tput setaf 7; tput bold; echo -en "Net: " tput setaf 7; tput bold; echo -en "Net: "

2
zshrc
View File

@@ -44,9 +44,9 @@ if [ "$OSTYPE" = "Darwin" ]; then
export EDITOR="/usr/local/bin/vim" export EDITOR="/usr/local/bin/vim"
export PATH="/usr/local/bin:$PATH" export PATH="/usr/local/bin:$PATH"
export PATH="/usr/local/sbin:$PATH" export PATH="/usr/local/sbin:$PATH"
export PATH="/opt/devkitpro/pacman/bin:$PATH"
fi fi
fi fi
export PATH="/opt/devkitpro/pacman/bin:$PATH"
export DEVKITPRO="/opt/devkitpro" export DEVKITPRO="/opt/devkitpro"
export DEVKITARM="/opt/devkitpro/devkitARM" export DEVKITARM="/opt/devkitpro/devkitARM"
export DEVKITPPC="/opt/devkitpro/devkitPPC" export DEVKITPPC="/opt/devkitpro/devkitPPC"