web-dev-qa-db-ja.com

Kubuntu 16.04.3でキーボードコンボを使用してスクリーンショットを撮る方法は?

OSXでは、キーボードの組み合わせ(Shift-Option-3または4)を使用してデスクトップの写真を簡単に撮ることができます。また、画像はデスクトップに自動的に作成されます。

Kubuntuでこれをどのようにシミュレートしますか?

ありがとう

7
mrjayviper

キーボードショートカットを使用してデスクトップの写真を撮影すると、画像は自動的にユーザーのデスクトップに保存されます

Spectacleの使用-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

コマンド:

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

デスクトップ画像全体をユーザーのデスクトップフォルダ、つまりデスクトップにキャプチャします。

このコマンドは、KDEメニューエディターを使用してKDEメニューに追加できます。 https://docs.kde.org/stable5/en/kde-workspace/kmenuedit/index.html

enter image description here

コマンドは、ユーザー定義のショートカットで起動できます。

enter image description here

ショートカットをクリックすると、写真がデスクトップに保存されます。

enter image description here

7
user26687

ksnapshotは、画面キャプチャのKDE(kubuntu)バージョンです。メニューから、またはprt scrnボタンを押して起動できます

2
ravery