Handy code snippets and files
Trang’s profile picture #
trang-vu-profile-picture.JPEG.jpeg 470 KiBSleep on Mac #
Disable sleeping when the lid is closed running on battery
sudo pmset -b sleep 0; sudo pmset -b disablesleep 1
Re-enable sleeping when the lid is closed running on battery
sudo pmset -b sleep 5; sudo pmset -b disablesleep 0
Hidden files in Finder #
Show hidden files
defaults write com.apple.finder AppleShowAllFiles TRUE
killall Finder
Hide hidden files
defaults write com.apple.finder AppleShowAllFiles FALSE
killall Finder