add a script to configure defaults on macOS
This commit is contained in:
parent
29dce211be
commit
aa92a39f15
1 changed files with 16 additions and 0 deletions
16
mac-defaults.sh
Executable file
16
mac-defaults.sh
Executable file
|
|
@ -0,0 +1,16 @@
|
||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
echo "* Save screenshtots to ~/Dropbox/Pictures/screenshots"
|
||||||
|
defaults write com.apple.screencapture location ~/Dropbox/Pictures/screenshots
|
||||||
|
|
||||||
|
echo "* Disable shadows on screenshots"
|
||||||
|
defaults write com.apple.screencapture disable-shadow -bool true
|
||||||
|
|
||||||
|
echo "* Set screenshot name to \"screenshot\""
|
||||||
|
defaults write com.apple.screencapture name screenshot
|
||||||
|
|
||||||
|
echo "* Show build duration in Xcode"
|
||||||
|
defaults write com.apple.dt.Xcode ShowBuildOperationDuration YES
|
||||||
|
|
||||||
|
echo "* Enable text selection in QuickLook"
|
||||||
|
defaults write com.apple.finder QLEnableTextSelection -bool YES
|
||||||
Loading…
Reference in a new issue