Skip to content

Instantly share code, notes, and snippets.

@anson0370
Last active December 18, 2015 18:59
Show Gist options
  • Save anson0370/5830020 to your computer and use it in GitHub Desktop.
Save anson0370/5830020 to your computer and use it in GitHub Desktop.
mac秘笈
# 让QuickLook中的文字可以选取-开启和关闭
defaults write com.apple.finder QLEnableTextSelection -bool TRUE;killall Finder
defaults delete com.apple.finder QLEnableTextSelection;killall Finder
# 强制mac字体渲染(非Apple家显示器有效)-设定/删除和查看
defaults -currentHost write -g AppleFontSmoothing -int 3 # 1-3档 轻-重
defaults -currentHost delete -g AppleFontSmoothing
defaults -currentHost read -g AppleFontSmoothing
# 隐藏的app在dock上虚化以区分-开启和关闭
defaults write com.apple.Dock showhidden -bool YES;killall Dock
defaults write com.apple.Dock showhidden -bool NO;killall Dock
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment