- 1. 概要
- 2. mate-screenshot
- 3. キーボードショートカット
1. 概要
以下、「Mageia 9」での操作です。
ここんとこ、他のプラットフォームでもそうなのですが、「xfce4-screenshooter」を使用すると、アクティブウィンドウのキャプチャをとるときにこけます。
仕方ないので、「mate-screenshot」を使います。
2. mate-screenshot
「root」ユーザ権限で。
dnf install -y mate-utils
3. キーボードショートカット
ログインユーザで。
vi ~/.config/openbox/lxde-rc.xml
<!-- Launch gnome-screenshot when PrintScreen is pressed -->
<keybind key="Print">
<action name="Execute"><command>gnome-screenshot -i</command></action>
</keybind>
を下記へ書き換えます。
<!-- Launch gnome-screenshot when PrintScreen is pressed -->
<keybind key="Print">
<action name="Execute"><command>mate-screenshot -w</command></action>
</keybind>
これで、ログインしなおせば
・Print アクティブウインドウをキャプチャして、「mate-screenshot」が起動
が機能します。
|
|