MacOS – Screenshots won’t be saved after System language change

configurationmacosscreen capture

I have changed the language from my MacOS system and now it won't save the screenshots anymore. Is there a way to fix it?

Thanks.

Best Answer

Changing the Language could lead to screen shot not finding the right location to save to.

So I would recommend to change the output, = save location for the keyboard short cut.

There are few ways to do this one of them is in Terminal.

For example, if I want to have the screenshots appear in my Pictures folder, I would use:

defaults write com.apple.screencapture location ~/Pictures/

To have the changes take effect, you then must type:

killall SystemUIServer

You can change the saved screenshot location back to the default setting by specifying the desktop again:

defaults write com.apple.screencapture location ~/Desktop/

Again, you’d need to kill SystemUIServer for changes to take effect.