アイコンファイルを探したいです。
ls Desktop | rg wps
wps-office-prometheus.desktop
リストの内容wps-office-prometheus.desktop
:
cat Desktop/wps-office-prometheus.desktop
[Desktop Entry]
Comment=Use WPS Writer to office work.
Comment[zh_CN]=使用 WPS 2019进行办公
Exec=/usr/bin/wps %F
GenericName=WPS
GenericName[zh_CN]=WPS 2019
Name=WPS 2019
Name[zh_CN]=WPS 2019
StartupNotify=false
Terminal=false
Type=Application
Categories=Office;WordProcessor;Qt;
X-DBUS-ServiceName=
X-DBUS-StartupType=
X-KDE-SubstituteUID=false
X-KDE-Username=
Icon=wps-office2019-kprometheus
InitialPreference=3
StartupWMClass=wpsoffice
おそらく、wpsアイコンを含むファイルがある可能性があり、そのwps-office2019-kprometheus
場所を探したいと思います。
sudo find /usr -name 'wps-office2019-kprometheus'
sudo find ./ -name 'wps-office2019-kprometheus'
sudo find /var -name 'wps-office2019-kprometheus'
それらのどれもファイルを見つけることができません。それではどうすればいいですか?
ベストアンサー1
'wps-office2019-kprometheus'
を使用する代わりに、'wps-office2019-kprometheus*'
アイコンファイル名にが含まれているため、出力は出ません。拡大する(例:jpg、png、svgなど)。
したがって、以下を実行する必要があります。
sudo find /usr -name 'wps-office2019-kprometheus*'
または:
find /usr/share/icons -name 'wps-office2019-kprometheus*'
# Might not be necessary to use 'sudo' and usually the icons are under
# '/usr/share/icons' path.