I'm using gnome-shell
on Ubuntu 12.04. When I hit PrtSc to take a screenshot, it works, but it automatically saves the screenshot in my Pictures folder. There's no dialogue asking where to save. It does show the dialogue box under unity though.
I'm using gnome-shell
on Ubuntu 12.04. When I hit PrtSc to take a screenshot, it works, but it automatically saves the screenshot in my Pictures folder. There's no dialogue asking where to save. It does show the dialogue box under unity though.
Assuming that I have read this bug-report correctly...
This is by design. No really!
Comments #37 onwards talk about this.
The current unity patches state:
The thread carries on:
With the reply:
So there you have it. The Gnome-Developers are insistent that their desktop environment should behave this way. Its an upstream issue. The Canonical Developers are respecting this decision and hence the "divergence" - Unity users have the Save as dialog whilst gnome-shell users have the by-design no dialog functionality.
Thus if you are using gnome-shell/gnome-classic, all the screenshots are saved in your home pictures folder
~/Pictures
Note: You can override the screenshot location with
gsettings
(command-line) ordconf-editor
(GUI):org.gnome.gnome-screenshot auto-save-directory
tofile:///home/yourusername/wherever/you/want
I'm late to the party, but I just tripped over this and want to offer a slightly different answer.
Basically, in the latest Gnome 3 / Gnome Shell then they are no-longer using Gnome Screenshot. That means any changes to Gnome-Screenshot's default settings (like default save location) won't affect anything.
Instead, you need to go to your Keyboard settings, disable the "Save a screenshot […] to Pictures" shortcuts and add your own custom shortcuts that call
gnome-screenshot
with no args (auto-save to its gsettings-defined location),-a
(save area),-w
(save current window) or-i
(if you want the options dialog back). You can obviously mix-and-match some settings, or add more fromman gnome-screenshot
.try using Shutter instead, its the best screen capture tool (as it site says :)
app site: http://shutter-project.org/
To configure Shutter as the default tool to take screenshots with when you press PrtSc or Alt+PrtSc, here’s what you need to do:
gnome:
1 Go to Edit ▸ Preferences in Shutter
2 In the Keyboard tab, enable both the “Capture” and “Capture with selection” checkboxes:
3 That’s it! Now the usual PrtSc and Alt+PrtSc keybindings will use Shutter to take the screenshots.
Hey guys this might help, I was poking around in the gnome menu as I noticed that with the new version of shutter enabling the hot key was not as simple and found that the iBus daemon wasn't started on my machine while in 'gnome fallback'. I found this by going to the gnome menu > system tools > Preferences > Keyboard Input Methods. I clicked it and started it as requested by a dialog and now printscreen works. Although the dialog used in unity doesn't show up, I found that it saved into ~/Pictures by default so no biggy, hope I could help someone as this frustrated me as well.
Maybe someone finds this helpful: To get this feature back, i copied the v3.18.0 binary to
/usr/bin/gnome-screenshot
, disabled the system hotkey for "Save a screenshot of an area to pictures" and created a new shortcut with the command/usr/bin/gnome-screenshot -a -i
Downside: without
-i
i can only select an area that will be copied to the clipboard (already better than before), with the switch, i first get the gnome-screenshot options before i can select the area, but the rest is fine.For full screenshot, drop the
-a
(building v3.18.0 under ubuntu 18 is a bit messy, i ended up with something like
-v /tmp:/tmp
so you can copy the binary to your host system in the end)apt-get update
apt-get install git gnome-common libx11-dev libglib2.0-dev libgtk-3-dev libcanberra-gtk3-dev
./autogen.sh && make && cp ./src/gnome-screenshot /tmp/
/usr/bin/gnome-screenshot
with file in/tmp
Be aware doing this is actually a semi-nice idea, even though it seems to work fine on my machine, the binary may be linked against symbols that dont exist on ubuntu 18 anymore / behave different. (I think the main proble why i compiled it in a 16.04 container was an version conflict in libpcre)
Ubuntu 20.04:
Ctrl + printScreen
will copy whole screen directly to clipboard.Ctrl + Shift + printScreen
will copy selected area directly to clipboard.Change default save directory when not using
Ctrl
- check other answers.