有什么方法可以找到特定文件类型的图标?我想编写一个 shell 脚本,返回特定文件类型的图像文件或图标的位置。
答案1
在 python 中,你可以使用以下命令获取图标:
>>> from gi.repository import Gio
>>> Gio.content_type_get_icon('text/python')
<ThemedIcon object at 0xb5d61324 (GThemedIcon at 0xa372590)>
有什么方法可以找到特定文件类型的图标?我想编写一个 shell 脚本,返回特定文件类型的图像文件或图标的位置。
在 python 中,你可以使用以下命令获取图标:
>>> from gi.repository import Gio
>>> Gio.content_type_get_icon('text/python')
<ThemedIcon object at 0xb5d61324 (GThemedIcon at 0xa372590)>