我想找到图标文件。
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'
他们都找不到文件,那怎么办?
而不是使用
'wps-office2019-kprometheus'
你应该使用'wps-office2019-kprometheus*'
. 您没有得到任何输出,因为图标文件名包含扩展名(例如 jpg、png、svg 等)。所以你应该运行:
或者: