独自のパーサーを作成せずにインストールされたアプリケーションのリスト(/usr/share/applications/にあるファイルベース)をどのように取得できますか?アプリケーション名、アプリケーションアイコンのパス、アプリケーションの実行パスのみが必要です。
私はC ++とQtライブラリを使用しています。もちろん、シェルコマンドなどを書くこともできます。
ベストアンサー1
以下は、役に立つ簡単で簡単なシェルスクリプトです。出力を簡単に解析できる形式で指定します。正しいアイコンが見つかったら、いくつかの改善を使って最高の解像度の画像を選択できます。おそらく最高のアイコンの使い方を得るためのより良い方法があるかもしれませんgconftool
。わかりません。
#!/bin/sh
icon_basedir1=/usr/share/icons/gnome
icon_basedir2=/usr/share/icons/hicolor
icon_basedir3=/usr/share/pixmaps
icon_basedir4=/usr/share/app-install/icons
error() {
echo $*
exit 1
}
is_icon() {
test -f "$1" && icon_path="$1" && return 0
icon_path=$(find $2 -name $1.png | sort -r | head -n 1)
test -f "$icon_path" && return 0
}
find_icon() {
test "$icon_filename" || return
is_icon $icon_filename $icon_basedir1 && return
is_icon $icon_filename $icon_basedir2 && return
is_icon $icon_filename $icon_basedir3 && return
is_icon $icon_filename $icon_basedir4 && return
}
find_name() {
test "$fullname" && name=$fullname && return 0
test "$genericname" && name=$genericname && return 0
}
find /usr/share/applications -type f -name \*.desktop | while read file; do
icon_filename=$(cat $file | grep ^Icon= | sed -ne 's/^.*=//' -e '1 p')
find_icon
executable_name=$(cat $file | grep ^Exec= | sed -ne 's/^.*=//' -e 's/ .*//' -e '1 p')
fullname=$(cat $file | grep FullName.en_ | sed -ne 's/^.*=//' -e '1 p')
genericname=$(cat $file | grep GenericName.en_ | sed -ne 's/^.*=//' -e '1 p')
name=$(cat $file | grep -i Name | sed -ne 's/^.*=//' -e '1 p')
find_name
echo app_file=$file
echo name=$name
echo executable=$(which $executable_name || echo $executable_name)
echo icon=$icon_path
echo
done