como tirar screenshots usando o combo de teclado no Kubuntu 16.04.3?

3

No OSX, posso facilmente tirar uma foto da área de trabalho usando combinações de teclado (Shift-Option-3 ou 4). E as imagens são criadas automaticamente na minha área de trabalho.

Como faço para simular isso no Kubuntu?

Obrigado

    
por mrjayviper 29.08.2017 / 06:02

2 respostas

4

Tirar uma foto da área de trabalho usando o atalho de teclado e a imagem é salva automaticamente na área de trabalho do usuário

Usando o Spectacle - o utilitário de captura de tela padrão do KDE Framework 5:

$ spectacle --help
Usage: spectacle [options]
KDE Screenshot Utility

Options:
  -v, --version              Displays version information.
  -h, --help                 Displays this help.
  --author                   Show author information.
  --license                  Show license information.
  --desktopfile <file name>  The base file name of the desktop entry for this
                             application.
  -f, --fullscreen           Capture the entire desktop (default)
  -m, --current              Capture the current monitor
  -a, --activewindow         Capture the active window
  -u, --windowundercursor    Capture the window currently under the cursor,
                             including parents of pop-up menus
  -t, --transientonly        Capture the window currently under the cursor,
                             excluding parents of pop-up menus
  -r, --region               Capture a rectangular region of the screen
  -g, --gui                  Start in GUI mode (default)
  -b, --background           Take a screenshot and exit without showing the GUI
  -s, --dbus                 Start in DBus-Activation mode
  -n, --nonotify             In background mode, do not pop up a notification
                             when the screenshot is taken
  -o, --output <fileName>    In background mode, save image to specified file
  -d, --delay <delayMsec>    In background mode, delay before taking the shot
                             (in milliseconds)
  -w, --onclick              Wait for a click before taking screenshot.
                             Invalidates delay

Comando:

spectacle -f -b -n -o "$HOME/Desktop/ScreenShot-$(date +%Y%m%d%H%M%S).jpg"

irá capturar toda a imagem da área de trabalho na pasta do desktop do usuário, também conhecida como desktop.

O comando pode ser adicionado ao menu do KDE com o editor de menu do KDE: link

O comando pode ser iniciado com o atalho definido pelo usuário:

Quando o atalho é clicado, a imagem é salva na área de trabalho:

    
por user26687 29.08.2017 / 17:35
1

ksnapshot é a versão do KDE (kubuntu) da captura de tela. Pode ser iniciado a partir do menu ou pressionando o botão prt scrn

    
por ravery 29.08.2017 / 06:09