Making a screenshot in Xfce

26,419

Solution 1

Go to:

XFCE Menu --> Settings --> Keyboard --> Application Shortcuts,

and add the xfce4-screenshooter -f command to use the "PrintScreen" key in order to take fullscreen screenshots.

Check archlinux wiki / Screenshots for more details or look at Settings Manager.

Here's what it looks like:

enter image description here

Solution 2

When using the keyboard>>Application Shortcuts to launch xfce-screenshooter, the program will not launch when a menu is opened on the panel. It appears that when the panel's menu is opened, the keyboard shortcut doesn't fire.

However, if you want to capture the menu at the top, open a terminal session and execute the following one liner:

sleep 10s; xfce4-screenshooter -f

... then click on the menu and wait for the snapshot. The one liner will wait for 10 seconds before grabbing a full screen image. Adjust the sleep delay if you need more or less time to wait.

Solution 3

If you are using a Chromebook, you could also adjust key bindings, since there is no "print screen" key.

You could also just use the terminal commands "xfce4-screenshooter -w" to capture the terminal window, or use the -f flag to capture the whole screen and then edit in the image editor of your choice.

Share:
26,419
seddka
Author by

seddka

Updated on September 18, 2022

Comments

  • seddka
    seddka almost 2 years

    I've installed Xfce desktop and removed Ubuntu's default DE. It turns out that making a screenshot requires running a special application called ScreenShot instead of just pressing PrtSc button.

    I wonder, how do I do a screenshot in the same way I did before by pressing PrtSc button?

  • seddka
    seddka about 11 years
    but can't add or remove any command from there.
  • nizar malangadan
    nizar malangadan about 11 years
    It should work. On clicking add, a small window named shortcut command will open. In the text box, add /usr/bin/xfce4-screenshooter -f, then press OK and press the shortcut button.
  • seddka
    seddka about 11 years
  • nizar malangadan
    nizar malangadan about 11 years
    Looks like it is a newer interface. Maybe the feature to add new shortcuts will come later, not in your current version.
  • Prajwal Dhatwalia
    Prajwal Dhatwalia over 5 years
    I personally recommend using the option -r instead of -f because it gives you the choice of taking the screenshot of whatever region you want.
  • Brian Burns
    Brian Burns about 5 years
    Ahh thanks - that's what the problem was - I was trying to get a screenshot of a panel menu!