# mactricks **Repository Path**: jyotish/mactricks ## Basic Information - **Project Name**: mactricks - **Description**: 苹果系统使用技巧 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 2 - **Forks**: 0 - **Created**: 2020-08-15 - **Last Updated**: 2023-11-21 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # mactricks #### 苹果系统使用技巧 #### 1: 显示隐藏文件 ``` defaults write com.apple.finder AppleShowAllFiles -bool YES && killall Finder ``` #### 2: 改变截屏格式 ``` defaults write com.apple.screencapture type jpg && killall SystemUIServer ``` #### 3: 改变截屏文件名字: ``` defaults write com.apple.screencapture name hello ``` #### 4: 改变截屏文件保存位置: ``` defaults write com.apple.screencapture location ~ ``` #### 5: 隐藏所有的桌面图标 ``` defaults write com.apple.finder CreateDesktop -bool false && killall Finder ``` #### 6: 给 Docker 填空 ``` defaults write com.apple.dock persistent-apps -array-add '{tile-data={}; tile-type="spacer-tile";}' && killall Dock ```