Advertisement
Guest User

Untitled

a guest
Feb 12th, 2016
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1. = Mac WorkStation tips
  2.  
  3. == Change the Screen Shot Save File Location in Mac OS X
  4.  
  5. === Set a new Save File Location
  6.  
  7. .Create a directory named `Screenshots` inside user's `Pictures` directory
  8. [source]
  9. ----
  10. $ mkdir ~/Pictures/Screenshots/
  11. ----
  12.  
  13. .Change the Screen Shot Save File Location to `~/Pictures/Screenshots/`
  14. [source]
  15. ----
  16. $ defaults write com.apple.screencapture location ~/Pictures/Screenshots/
  17. ----
  18.  
  19. .For the changes to take effect without rebooting, kill SystemUIServer process to relaunch it and set the location:
  20. [source]
  21. ----
  22. $ killall SystemUIServer
  23. ----
  24.  
  25. === Changing Back to the Default Screen Shot File Save Location in Mac OS X
  26.  
  27. [source]
  28. ----
  29. $ defaults write com.apple.screencapture location ~/Desktop/
  30. $ killall SystemUIServer
  31. ----
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement