Openbox - 共通事項 - 画面キャプチャ - Ubuntu
1. 概要 「Ubuntu」で、「Openbox」を使う際は、「Lubuntu」でログインを切り替えて、「Openbox」のデスクトップへログインします。 「Ubuntu」では、「xfce4-screenshooter」で画面キャプチャをとります。 以下、「Lubuntu 23.04」での操作です。 以下のショートカットキーを割りあてます。 ・Print 全画面キャプチャしてクリップボードへコピー ・Ctrl+Print アクティブウィンドウキャプチャしてクリップボードへコピー 2. インストール 「root」ユーザ権限で。 apt install -y xfce4-screenshooter xfce4-clipman 3. クリップボードマネージャ 「xfce4-clipman」をログイン時に起動するようにします。 ログインユーザで。 mkdir -pv ~/.config/openbox sh cat << 'EOF' >> ~/.config/openbox/autostart xfce4-clipman & EOF exit 4. ショートカットキー ログインユーザで。 カスタマイズ用にファイルをコピーして編集。 cp /etc/xdg/openbox/rc.xml ~/.config/openbox/rc.xml vi ~/.config/openbox/rc.xml <!-- Launch scrot when Print is pressed --> <keybind key="Print"> <action name="Execute"><command>scrot</command></action> </keybind> を下記へ変更します。 (行番号は、バージョンにより異なります) <!-- Launch scrot when Print is pressed --> <keybind key="Print"> <action name="Execute"> <command>xfce4-screenshooter -c -f</command> </action> </keybind> <keybind key="C-Print"> <action name="Execute"> <command>xfce4-screenshooter -c -w</command> </action> </keybind>
・Print 全画面キャプチャしてクリップボードへコピー ・Ctrl+Print アクティブウィンドウキャプチャしてクリップボードへコピー
apt install -y xfce4-screenshooter xfce4-clipman
mkdir -pv ~/.config/openbox sh cat << 'EOF' >> ~/.config/openbox/autostart xfce4-clipman & EOF exit
cp /etc/xdg/openbox/rc.xml ~/.config/openbox/rc.xml vi ~/.config/openbox/rc.xml
<!-- Launch scrot when Print is pressed --> <keybind key="Print"> <action name="Execute"><command>scrot</command></action> </keybind>
<!-- Launch scrot when Print is pressed --> <keybind key="Print"> <action name="Execute"> <command>xfce4-screenshooter -c -f</command> </action> </keybind> <keybind key="C-Print"> <action name="Execute"> <command>xfce4-screenshooter -c -w</command> </action> </keybind>