📢 Webサイト閉鎖と移転のお知らせ
このWebサイトは2026年9月に閉鎖いたします。
新しい記事は移転先で追加しております。(旧サイトでは記事を追加しておりません)
| 157行目: | 157行目: | ||
make -j 8 | make -j 8 | ||
make install | make install | ||
<br><br> | |||
== Diodon == | |||
==== Diodonのインストール ==== | |||
Diodonのビルドに必要な依存関係のライブラリをインストールする。<br> | |||
sudo zypper install vala libayatana-appindicator3-devel libpeas-devel zeitgeist-devel xvfb-run | |||
<br> | |||
DiodonのGithunからソースコードをダウンロードする。<br> | |||
git clone https://github.com/diodon-dev/diodon.git | |||
cd diodon | |||
<br> | |||
Diodonをビルドおよびインストールする。<br> | |||
/<Python3のインストールディレクトリ>/bin/meson -Dprefix=<Diodonのインストールディレクトリ> builddir | |||
cd builddir | |||
<br> | |||
アプリケーションインジケータ用のパッケージを提供していないディストリビューションでは、<br> | |||
builddir作成コマンドを調整することにより、インジケータのビルドを無効化することができる。<br> | |||
/<Python3のインストールディレクトリ>/bin/meson -Dprefix=<Diodonのインストールディレクトリ> builddir -Ddisable-indicator-plugin=true | |||
cd builddir | |||
<br> | |||
ninja | |||
ninja test | |||
sudo ninja install | |||
<br> | |||
Diodonをアンインストールする場合は、上記のソースコードディレクトリ内において、以下のコマンドを実行する。<br> | |||
sudo ninja uninstall | |||
<br> | |||
==== Diodonのプラグイン ==== | |||
Diodonプラグインを作成する場合は、[http://esite.ch/2011/10/19/writing-a-plugin-for-diodon/ こちらの記事]を参照すること。<br> | |||
<br> | |||
下表に、Diodon向けの便利なプラグインを示す。<br> | |||
<center> | |||
{| class="wikitable" style="background-color:#fefefe;" | |||
|+ プラグインの概要 | |||
! style="background-color:#66CCFF;" | プラグイン | |||
! style="background-color:#66CCFF;" | 説明 | |||
|- | |||
| [https://github.com/RedHatter/diodon-plugins Features] || Diodonメニューの追加機能 | |||
|- | |||
| [https://github.com/RedHatter/diodon-plugins Numbers] || クリップボードのメニュー項目数を表示する。 | |||
|- | |||
| [https://github.com/RedHatter/diodon-plugins Pop Item] || アクティブなクリップボード項目を貼り付けてから削除する。 | |||
|- | |||
| [https://github.com/RedHatter/diodon-plugins Paste All] || 最近のアイテムを一度に貼り付ける。 | |||
|- | |||
| [https://github.com/RedHatter/diodon-plugins Edit] || アクティブなアイテムを編集するように促す。 | |||
|} | |||
</center> | |||
<br><br> | <br><br> | ||