是否可以使用“gio set”命令在文件夹上插入图标?

是否可以使用“gio set”命令在文件夹上插入图标?

Ubuntu 16.04使用以下命令在我的文件夹中插入图标​​,并且效果很好:

gvfs-set-attribute -t string folderIWishToInsertIcon metadata::custom-icon "file:///home/myUser/myIcon.png"

升级后,Ubuntu 18.04此命令仍然可以正常工作,但现在我收到一条消息,说它是一个已弃用的工具,并建议我改用gio set

ramuyko@myPC:~$ gvfs-set-attribute -t string folderIWishToInsertIcon metadata::custom-icon "file:///home/myUser/myIcon.png"
This tool has been deprecated, use 'gio set' instead.
See 'gio help set' for more info.

我见过吉奥的手册页并尝试使用命令在我的文件夹中插入图标gio set​​,但使用正确的参数没有成功。有人知道这是否可行以及如何做到这一点吗?

答案1

正如评论中所述,gio set命令使用与 相同的参数形式gvfs-set-attribute,只是setgio一个单独的命令行参数,而不是gvfs-set-attribute一个完整的命令。因此,正确的命令应该是:

gio set -t 'string' folderIWishToInsertIcon 'metadata::custom-icon' 'file:///home/myUser/myIcon.png'

相关内容