Change Screenshot Destination Folder

Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
Post Reply
Lupatrian

Change Screenshot Destination Folder

Post by Lupatrian »

Total Noob Q: This should be easy, but I can't find the answer anywhere! I just want to change the screenshot default directory from my home folder to the desktop (Ubuntu) - either permanently, or by adding to the IMPORT command line. THANKS MUCH.
User avatar
anthony
Posts: 8883
Joined: 2004-05-31T19:27:03-07:00
Authentication code: 8675308
Location: Brisbane, Australia

Re: Change Screenshot Destination Folder

Post by anthony »

How are you getting the screen shot? Are you even using Imagemagick?
Anthony Thyssen -- Webmaster for ImageMagick Example Pages
https://imagemagick.org/Usage/
Lupatrian

Re: Change Screenshot Destination Folder

Post by Lupatrian »

import MyScreenshot.png
User avatar
anthony
Posts: 8883
Joined: 2004-05-31T19:27:03-07:00
Authentication code: 8675308
Location: Brisbane, Australia

Re: Change Screenshot Destination Folder

Post by anthony »

That command saves into the current directory in which import is run!

Change it to

Code: Select all

cd $HOME/Desktop; import MyScreenshot.png
or

Code: Select all

import $HOME/Desktop/MyScreenshot.png
Gnome always like to run commands from the users home directory. Something I found to be particularly painful in some gnome run scripts.
Anthony Thyssen -- Webmaster for ImageMagick Example Pages
https://imagemagick.org/Usage/
Lupatrian

re:

Post by Lupatrian »

Anthony - thanks so much. :)
Post Reply