2

Since Windows 95 I have used Alfred Bollinger's PrintKey program to print what is on the screen. I have just started Ubuntu and can not find a keyboard shortcut that will let me PRINT what is on the screen. Although sometimes it is nice to save a copy of the screen, I want to just print what is on my screen whether it is using FireFox, or just the desktop. Please is there some way to map the key to print? Do you all know of a program that would work with UBuntu and do this?

Reply: (I still haven't figured out yet how to get the comments up so will do it here) Thank You all. I will try the various suggestions until I find one that fits me. I believed there had to be a way to redefine the keys, but don't have enough knowledge yet of Ubuntu. I'll post which one works best for me when I decide. Thanks again.

user274600
  • 21
  • 1
  • 1
  • 3

4 Answers4

1

In "system settings" go to "Keyboard" ==> "Shortcuts" and then click on "Screenshots" and now you can edit what ever key you like to be your "screenshot key" have fun

0

If you are using gnome on ubuntu 20.04 : Quickly take a screenshot of the desktop, a window, or an area at any time using these global keyboard shortcuts:

Prt Scrn to take a screenshot of the desktop.

Alt+Prt Scrn to take a screenshot of a window.

Shift+Prt Scrn to take a screenshot of an area you select.

When you use a keyboard shortcut, the image is automatically saved in your Pictures folder in your home folder with a file name that begins with Screenshot and includes the date and time it was taken.

If you do not have a Pictures folder, the images will be saved in your home folder instead.

for further info: https://help.gnome.org/users/gnome-help/stable/screen-shot-record.html.en

pat
  • 439
0

Shutter will do the job. To install shutter open the terminal(Ctrl+Alt+T) and type/paste these text :

sudo add-apt-repository ppa:shutter/ppa
sudo apt-get update
sudo apt-get install shutter

To make shutter as your default print screen program read this

UB--
  • 1
0

If you want an additional shortcut to just send the full screen to your default printer:

First install the package ´imagemagick`.

Then open the System Settings and click the "Keyboard" symbol in the "Hardware" section. Open the "Shortcuts" tab, click on "Custom Shortcuts" on the left and on the "+" button at the bottom:

add custom keyboard shortcut

This will open a small dialog with a "Name" and a "Command" input line. Choose something like "Print screen" for the name and

sh -c 'import -window root png:-| lp'

for the command:

shortcut dialog

Then click "Apply". In the list you see your new shortcut with the word Disabled on the right:

shortcut list

Click on the word Disabled and it will change to New accelerator.... Now press the key combo you want for this shortcut. Now you can use that combo to make a full screen print.

Note that it doesn't ask any questions and doesn't give any feedback but silently prints your screen to your default printer.