21 lines
546 B
Plaintext
21 lines
546 B
Plaintext
# Git
|
|
alias gcl='git clone'
|
|
alias gp='git push'
|
|
alias gs='git status'
|
|
|
|
# ls
|
|
alias ll='ls -lah'
|
|
alias l='ls -CF'
|
|
|
|
# System Utils
|
|
alias rebuild='darwin-rebuild switch --flake ~/dotfiles/nix#macbook'
|
|
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' |