如何在桌面上找到包含该图标的文件夹?

如何在桌面上找到包含该图标的文件夹?

我的桌面上有一个图标:
在此输入图像描述

我想找到图标文件。

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-office2019-kprometheus包含 wps 图标的文件,我想找到该位置。

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.

相关内容