17 lines
847 B
Plaintext
17 lines
847 B
Plaintext
# ls
|
|
alias ll='ls -lah'
|
|
alias l='ls -CF'
|
|
|
|
# System Utils
|
|
alias brewup='cl && brew update && brew upgrade && brew upgrade --cask && brew cleanup -s && brew doctor --verbose | grep -A 1 --color=never "Homebrew Version" && brew autoremove && { command -v haproxy &>/dev/null && sudo codesign --force --sign - $(which haproxy) && sudo /usr/libexec/ApplicationFirewall/socketfilterfw --add $(which haproxy) && sudo /usr/libexec/ApplicationFirewall/socketfilterfw --unblock $(which haproxy) || true; }'
|
|
alias cl='clear'
|
|
alias wthr='curl wttr.in/san_luis_obispo'
|
|
alias nf='cl && fastfetch && shownetinfo && batt'
|
|
alias src='source ~/.zshrc'
|
|
|
|
alias fps='if [[ $(launchctl getenv MTL_HUD_ENABLED) -eq 1 ]]; then
|
|
launchctl unsetenv MTL_HUD_ENABLED && echo "Metal FPS disabled"
|
|
else
|
|
launchctl setenv MTL_HUD_ENABLED 1 && echo "Metal FPS enabled"
|
|
fi'
|