Page 1 of 1

Change Screenshot Destination Folder

Posted: 2009-07-25T12:32:10-07:00
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.

Re: Change Screenshot Destination Folder

Posted: 2009-07-31T20:05:46-07:00
by anthony
How are you getting the screen shot? Are you even using Imagemagick?

Re: Change Screenshot Destination Folder

Posted: 2009-08-01T13:47:55-07:00
by Lupatrian
import MyScreenshot.png

Re: Change Screenshot Destination Folder

Posted: 2009-08-01T18:39:29-07:00
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.

re:

Posted: 2009-08-02T09:09:39-07:00
by Lupatrian
Anthony - thanks so much. :)