1
0
mirror of https://github.com/kremalicious/dotfiles.git synced 2024-11-21 17:27:13 +01:00

Show/hide hidden files in Finder: boolean needs to be all caps to work in Mavericks

This commit is contained in:
Matthias Kretschmann 2013-10-06 21:16:23 +02:00
parent 176be0d707
commit 6bc3dd0686

View File

@ -18,5 +18,5 @@ alias update='sudo softwareupdate -i -a; brew update; brew upgrade; brew cleanup
alias cleanup="find . -type f -name '*.DS_Store' -ls -delete"
# Show/hide hidden files in Finder
alias show="defaults write com.apple.Finder AppleShowAllFiles -bool true && killall Finder"
alias hide="defaults write com.apple.Finder AppleShowAllFiles -bool false && killall Finder"
alias show="defaults write com.apple.Finder AppleShowAllFiles -bool TRUE && killall Finder"
alias hide="defaults write com.apple.Finder AppleShowAllFiles -bool FALSE && killall Finder"