画面キャプチャ

Information

version date memo
1.0 2013/05/02 first

概要

Print Screenが上手く行かないので、設定を変更する。

Print Screenコマンド

LXDEにおいては、以下のコマンドを用いてキャプチャを行う。
存在しなければ、apt-get等でインストールする。

# キャプチャ
xfce4-screenshooter
# 全画面
xfce4-screenshooter -f
# 範囲指定
xfce4-screenshooter -r



ショートカットキー指定

ショートカットの設定参照

以下の様に設定した。

<!-- 通常のPrintScreenキーを全画面キャプチャ -->
<keybind key="Print">
  <action name="Execute">
    <execute>xfce4-screenshooter -f</execute>
  </action>
</keybind>
<!-- Alt + PrintScreenキーを範囲指定キャプチャ -->
<keybind key="A-Print">
  <action name="Execute">
    <execute>xfce4-screenshooter -r</execute>
  </action>
</keybind>