This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
alias hide-desktop="defaults write com.apple.finder CreateDesktop false; killall Finder" | |
alias show-desktop="defaults write com.apple.finder CreateDesktop true; killall Finder" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Only execute commands in interactive sessions | |
if status is-interactive | |
# Ensure Homebrew is in the PATH for everything installed via Homebrew | |
if type brew &>/dev/null | |
set -gx PATH $PATH (brew --prefix)/bin | |
set -gx PATH $PATH (brew --prefix)/sbin | |
end | |
end |
OlderNewer