LXQt - 共通事項 - 画面キャプチャ - FreeBSD

 クラウディア
1. 概要
2. インストール
3. クリップボードマネージャ
4. ショートカットキー

1. 概要

 「FreeBSD」での設定も、少しずつ変えたりしていますので、改めて書き起こします。

2. インストール

 「root」ユーザ権限で。

pkg install -y xfce4-screenshooter-plugin xfce4-clipman-plugin

3. クリップボードマネージャ

 ログイン時に、「xfce4-clipman」を起動します。  以下、ログインユーザで。  「FreeBSD 12.2 RELEASE」では。

~/.config/autostart/xfce4-clipman-plugin-autostart.desktop
 が、機能しているようで、再起動してログインすると「xfce4-clipman」が起動していたような気がするのですが。  「FreeBSD 13.0 RELEASE」以降では

mkdir -pv ~/.config/autostart
cp /usr/local/share/applications/xfce4-clipman.desktop ~/.config/autostart/.
vi ~/.config/autostart/xfce4-clipman.desktop
 下から2行目をコメントアウトします(行番号は「FreeBSD 13.0 RELEASE」のものです)。

Categories=GTK;Utility;TrayIcon;
OnlyShowIn=XFCE;GNOME;X-Cinnamon;
StartupNotify=false
 「FreeBSD 12.4 RELEASE」からまた変えました。  「root」ユーザ権限で。

vi /usr/local/etc/xdg/autostart/xfce4-clipman-plugin-autostart.desktop
 下から2行目をコメントアウトします(行番号は「FreeBSD 13.0 RELEASE」のものです)。

TryExec=xfce4-clipman
Exec=xfce4-clipman
Icon=xfce4-clipman-plugin
OnlyShowIn=XFCE;X-Cinnamon;
Terminal=false
 「FreeBSD 13.2 RELEASE」でまた変更。  (「/usr/local/etc/xdg/autostart/xfce4-clipman-plugin-autostart.desktop」が動作しなかったので)

mkdir -pv ~/.config/autostart
cp /usr/local/share/applications/xfce4-clipman.desktop ~/.config/autostart/.
vi ~/.config/autostart/xfce4-clipman.desktop

Categories=GTK;Utility;TrayIcon;
OnlyShowIn=XFCE;GNOME;X-Cinnamon;
StartupNotify=false
 を下記へ変更します。

Categories=GTK;Utility;TrayIcon;
OnlyShowIn=XFCE;GNOME;X-Cinnamon;LXQt;
StartupNotify=false

4. ショートカットキー

 以下のように、ショートカットキーを割り当てます。 ・Print 全画面をキャプチャして、クリップボードへコピー(xfce4-screenshooter -c -f) ・Ctrl+Print アクティブウィンドウをキャプチャして、クリップボードへコピー(xfce4-screenshooter -c -w)  ショートカットキーの割り当て方に関しては、本節の冒頭をご参照ください。
earthcar(アースカー)
 
 
4