8

Configuring with dconf or gconf as suggested in this post worded on Ubuntu Gnome 13.10 (I tried and succeeded). But does NOT work on Ubuntu Gnome 14.04.

How to change auto-save-directory of gnome-screenshot on Ubuntu Gnome 14.04?

frozen-flame
  • 461
  • 2
  • 6
  • 9

2 Answers2

15

Edit

after reading this article and this question it seems like in Ubuntu-Gnome 14.04 (gnome 3.10) the screenshots with Keyboard shortcuts eg:Print are handle by the shell (gnome-settings-daemon media-keys) saving the files to ~/Pictures and not by the gnome-screenshot application.

I have installed Ubuntu Gnome 14.04 to test it.

1) I set the auto-save-directory to /tmp:

  • gsettings set org.gnome.gnome-screenshot auto-save-directory '/tmp'

2) I disable the keyboard shortcut Print and I created a new one to run the gnome-screenshot command with the shortcut Ctrl+Alt+H . Then I pressed the new shortcut and the screenshot appears in the /tmp directory.

enter image description here

enter image description here

enter image description here

So, set the auto-save-directory value works for gnome-screenshot, but to solve this issue you can try to disable the default keyboard shortcuts for Screenshots and create new ones but running the gnome-screenshot command.

gnome-screenshots command examples:

Whole screen: gnome-screenshot
Grab a window: screen gnome-screenshot -w
Grab an area: screen gnome-screenshot -a
Send the grab to the clipboard: gnome-screenshot -c
Interactive: gnome-screenshot -i


You can set the directory with the dconf command.

Command line

In this example I'm going to set my Downloads directory.

dconf write /org/gnome/gnome-screenshot auto-save-directory \'/home/youruser/Downloads\'

Please put the full path to the folder... My case /home/virtual/Downloads

GUI with dconf-editor Install dconf-editor

enter image description here

Roman Raguet
  • 9,533
  • 2
  • 41
  • 41
  • Thanks, but does not work for me. – frozen-flame May 10 '14 at 13:46
  • @frozen-flame... if you run "gsettings get org.gnome.gnome-screenshot auto-save-directory". what is the result? – Roman Raguet May 10 '14 at 13:51
  • 2
    After gsettings set org.gnome.gnome-screenshot auto-save-directory /new/path, gsettings get org.gnome.gnome-screenshot auto-save-directory gives me /new/path. But when I take screenshot with Print Scr button, the picture still saves to the old path(~/Pictures). – frozen-flame May 10 '14 at 14:38
  • @frozen-flame: edited for dconf - do you have a value in last-save-directory? – Takkat May 10 '14 at 14:43
  • @frozen-flame: also try a shot using shift-PrtScr to select an area (this is what I tested above for working) – Takkat May 10 '14 at 14:47
  • @frozen-flame: Also you can check in the gnome-control-center > keyboard > shortcuts.. and see if you have a key to "Save a screenshot to Pictures" ... and disable it. – Roman Raguet May 10 '14 at 15:34
  • Same issue here. I tried settings both auto-save-director and last-save-directory. Independent which screenshot method I use it does not land in the select folder. – Sina May 10 '14 at 19:41
  • @RomanRaguet Not found. – frozen-flame May 11 '14 at 17:10
  • @frozen-flame: you can check my edit to see if helps. – Roman Raguet May 12 '14 at 00:50
  • @RomanRaguet Great answer! A little bit inconvenient, but the problem solved. I just wonder if we can change the command binding of keyboard->screenshots from gnome-settings-daemon media-keys to gnome-screenshot? – frozen-flame May 15 '14 at 07:18
  • @RomanRaguet Do you know where are the keyboard settings stored? A config file somewhere? – frozen-flame May 15 '14 at 07:20
  • @frozen-flame: the keyboard setting are in the schema org.gnome.settings-daemon.plugins.media-keys . but i think you need to set a custom shortcut to trigger gnome-screenshot. – Roman Raguet May 15 '14 at 09:55
  • @frozen-flame: but you can disable the default print shortcut. and then create a new custom one to launch gnome-screeshot and assign the print key. – Roman Raguet May 15 '14 at 10:02
  • Is there a way to change how it names the file? – Costa Michailidis Mar 09 '15 at 18:07
  • "screen gnome-screenshot -w", "screen gnome-screenshot -a", didn't work for me, it worked with "gnome-screenshot -w", "gnome-screenshot -a". – leoperbo Jul 28 '17 at 18:54
3

Just install dconf-editor:

sudo apt-get install dconf-editor

Open dconf-editor and edit the auto-save-directory field (see screenshot below):

  • org > gnome > gnome-screenshot

screenshot

chelder
  • 449