私はDebian 9(stretch)とXFCEを実行しています。実行できるようにデスクトップファイルを作成しています。モジラサンダーバードひげメニューから。 Thunderbirdのプロパティに正しい値が必要ですCategories
。次のコマンドを使用してカテゴリリストを作成しました。このコマンドの出力例は次のとおりです。
cd /usr/share/applications
grep -i -P -e "^[Cc]ategories[=].*" ./*.desktop | sort | uniq
しかし、私が作成したリストは不完全かもしれません。以下を含む他の質問を読みました。
完全な標準カテゴリのリストはどこにありますか?
私が作成したデスクトップファイルです。
[Desktop Entry]
Version=1.0
Name=Thunderbird
GenericName=Thunderbird mail client
Comment=Check email using a local Thunderbird mail client
Exec=/opt/thunderbird/thunderbird %F
Icon=/home/username/Pictures/Icons/thunderbird-256.png
Terminal=false
Type=Application
Categories=Network;Office;Email;
MimeType=message/rfc822;message/x-gnu-rmail;
X-XFCE-MimeType=x-scheme-handler/mailto;
答え1
freedesktop.orgは、カテゴリを含む多くのxdg標準を維持しています。
https://standards.freedesktop.org/menu-spec/latest/apa.html
電子メールは、WebまたはOfficeカテゴリで使用できる追加のカテゴリです。一部の追加カテゴリは、基本カテゴリの1つで使用する必要があります。他のものはこれらのうちの1つと組み合わせて使用できます。
これがうまく実装されたのか、それとも単なる提案なのかはわかりません。