Tell me more ×
Ask Different is a question and answer site for power users of Apple hardware and software. It's 100% free, no registration required.

Is there a way to change the default screenshot filename prefix (the Cmd-Shift-4 type screenshot) to something other than the default? The default name looks like this:

Screen Shot 2011-08-30 at 10.01.36 AM.png

But I'd prefer to use something like:

screenshot_2011-08-30_100136.png

Basically so I can remove the spaces and junk, since it's annoying to browse dig through files in Terminal. Any easy way to change this prefix with one of the defaults write com.apple.screencapture style commands?

share|improve this question
Is there any chance we could get you to select an answer that worked for you? (or an edit to know better what you seek?) – bmike Apr 13 at 14:43

6 Answers

The same effect of the complicated terminal actions shown above can be achieved through the free secrets preference pane, which serves as an interface for all sorts of hidden setting in Mac OS and it's apps. Simply open the pref pane and find the setting u want to change

share|improve this answer

I solved this another way. Using Automator I set up a Folder Action to monitor my screen shot folder and rename any new files exactly the way I want them.

There's a decent guide here with a similar approach and instructions.

share|improve this answer

I have disabled the default shortcuts and assigned a shortcut to this command:

screencapture -i ~/Desktop/$(date +%Y%m%d%H%M%S).png

-i (interactive) is like ⇧⌘4 or ⌃⇧⌘4.

share|improve this answer

You can change 'Screen shot' to 'screenshot' with the following commands

defaults write com.apple.screencapture name screenshot
killall SystemUIServer

If you want to go digging a bit deeper in Terminal, you can achieve what you want by doing the following:

NOTE: Make a backup of any files you change in case you make a mistake.

  1. cd /System/Library/CoreServices/SystemUIServer.app/Contents/Resources/English.lproj
  2. Make a copy of the existing file:
    sudo cp ScreenCapture.strings ScreenCapture.strings.old
  3. Enter Admin password if prompted
  4. Convert to an editable format:
    sudo plutil -convert xml1 ScreenCapture.strings
  5. sudo vi ScreenCapture.strings

    Locate the following lines:

    <key>%@ %@ at %@</key>  
    <string>%@ %@ at %@</string>  
    

    and replace with the following lines:

    <key>%@ %@ at %@</key>  
    <string>%@_%@_%@</string>  
    
  6. Convert back to binary:
    sudo plutil -convert binary1 ScreenCapture.strings
  7. killall SystemUIServer

which combined with the first change should get you something like this:

screenshot_2011-08-30_10.01.36.png which is very close to what you need I think

share|improve this answer

Open terminal and enter:

$ sudo su

$ cd /System/Library/CoreServices/SystemUIServer.app/Contents/Resources/English.lproj

$ plutil -convert xml1 ScreenCapture.strings

$ nano ScreenCapture.strings

change

<key>%@ %@ at %@</key>
    <string>%@ %@ at %@</string>
<key>.</key>
    <string>.</string>
<key>Screen Shot</key>
    <string>Screen Shot</string>

to

<key>%@ %@ at %@</key>
    <string>%@_%@_%@</string>
<key>.</key>
    <string></string>
<key>Screen Shot</key>
    <string>screenshot</string>

then

Control + O to write the file, and Control + X to exit nano

$ plutil -convert binary1 ScreenCapture.strings

$ killall SystemUIServer

One more thing to note here is that to get rid of AM/PM you will need to change it in System Preferences > Language & Text > Formats (24 hour format). Time stamps are displayed according to how this is set; keep in mind if you change this setting all filenames will use this format.

~ Let me know how it works out.

share|improve this answer

IMO you should absolutely not muck around with anything in /System/.

For one thing, you are just asking for your customizations to be overwritten by a future update.

Download the demo of Sharpshooter from http://www.kerlmax.com/products/sharpshooter/

You can use it for 30 days. Then buy it for $15. It's a great utility.

Alternatively, have you tried Skitch? It's completely free, and a lot better than the built-in.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.