xfce screenshooter

Get help with XFCE specific problems
User avatar
ncmprhnsbl
DEV Team
DEV Team
Posts: 3941
Joined: 20 Mar 2012, 03:42
Distribution: v5.0-64bit
Location: australia
Contact:

xfce screenshooter

Post#1 by ncmprhnsbl » 21 Jul 2023, 23:54

nedite8864 wrote:
21 Jul 2023, 09:44
so it immediately copies the captured image to my clipboard
https://man.archlinux.org/man/xfce4-screenshooter.1
-c, --clipboard
Copy the screenshot to the clipboard
maybe try:

Code: Select all

xfce-screenshooter -r -c   (or -rc)
Forum Rules : https://forum.porteus.org/viewtopic.php?f=35&t=44

donald
Full of knowledge
Full of knowledge
Posts: 2073
Joined: 17 Jun 2013, 13:17
Distribution: Porteus 3.2.2 XFCE 32bit
Location: Germany

xfce screenshooter

Post#2 by donald » 22 Jul 2023, 01:49

Hi nedite8864

Create a simple 1-liner script in /usr/local/bin/<whatever name> (I named it bla)
with following content:

Code: Select all

#!/bin/bash
mv -t "/home/guest/Pictures" "$1"
and make it executeable.

now you can run xfce4-screenshooter -r -o bla

no Gui appears and the screenshot will be in /home/guest/Pictures

Post Reply