Desktop

如何在桌面上找到包含該圖示的文件夾?

  • November 12, 2022

我的桌面上有一個圖示:

在此處輸入圖像描述

我想找到圖示文件。

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 等)。

所以你應該執行:

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.

引用自:https://unix.stackexchange.com/questions/724562