我的桌面上有一个启动器,并希望使用相同的图标手动添加另一个启动器。
当我转到现有启动器的首选项并单击图标时,它不会带我到存储图标的文件夹,而是带我的主文件夹。
如何找出启动器中使用过的图标在系统中的位置?
我的桌面上有一个启动器,并希望使用相同的图标手动添加另一个启动器。
当我转到现有启动器的首选项并单击图标时,它不会带我到存储图标的文件夹,而是带我的主文件夹。
如何找出启动器中使用过的图标在系统中的位置?
Answers:
大多数情况下,图标将从您当前的图标主题中选择,而不是被称为绝对路径。
查找Icon
定义:
Icon=gnome-panel-launcher
然后,您可以根据自己的主题在中的某个位置找到该图标/usr/share/icons
。
这是一个快速的python脚本,可以为您找到正确的图标路径:
import gtk
print "enter the icon name (case sensitive):"
icon_name = raw_input(">>> ")
icon_theme = gtk.icon_theme_get_default()
icon = icon_theme.lookup_icon(icon_name, 48, 0)
if icon:
print icon.get_filename()
else:
print "not found"
将其保存在某个地方并运行python /path/to/script.py
。
它看起来像这样:
stefano@lenovo:~$ python test.py
enter the icon name (case sensitive):
>>> gtk-execute
/usr/share/icons/Humanity/actions/48/gtk-execute.svg
或者,您可以四处逛逛,/usr/share/icons
直到找到所需的图标。
简单得多:您只需复制并粘贴启动器,然后更改名称和命令
上面脚本的更新版本:
#!/usr/bin/env python3
import gi
gi.require_version('Gtk', '3.0')
from gi.repository import Gtk
icon_name = input("Icon name (case sensitive): ")
icon_theme = Gtk.IconTheme.get_default()
icon = icon_theme.lookup_icon(icon_name, 48, 0)
if icon:
print(icon.get_filename())
else:
print("not found")
更多信息。
普通启动器实际上是/ usr / share / applications /中的.desktop文件。
例如:/usr/share/applications/usb-creator-gtk.desktop
(请参阅http://standards.freedesktop.org/desktop-entry-spec/desktop-entry-spec-latest.html)
每个桌面文件都有一行用于指定图标的行,例如:
Icon=usb-creator-gtk
如果没有路径(和文件扩展名)(如本例所示),则意味着在(某处)/ usr / share / icons /中找到了该图标,并且在运行时使用的图标取决于当前主题,在某些情况下情况下显示上下文(大小)。
知道了桌面文件中的图标名称(无扩展名),可以按以下方式查找/找到它们:
$ find . -name "usb-creator-gtk*"
./hicolor/scalable/apps/usb-creator-gtk.svg
./Humanity/apps/32/usb-creator-gtk.svg
./Humanity/apps/16/usb-creator-gtk.svg
./Humanity/apps/22/usb-creator-gtk.svg
./Humanity/apps/24/usb-creator-gtk.svg
./Humanity/apps/64/usb-creator-gtk.svg
./Humanity/apps/48/usb-creator-gtk.svg
这是基于Stefano Palazzo 在这里的回答。
#!/usr/bin/env python3
from gi.repository import Gtk
icon_name = input("Icon name (case sensitive): ")
if icon_name:
theme = Gtk.IconTheme.get_default()
found_icons = set()
for res in range(0, 512, 2):
icon = theme.lookup_icon(icon_name, res, 0)
if icon:
found_icons.add(icon.get_filename())
if found_icons:
print("\n".join(found_icons))
else:
print(icon_name, "was not found")
将以上内容保存到文件中,然后使用运行python3 /path/to/file
。
Stefano Palazzo的原始脚本之间的区别是:
gi.repository
代替Gtk
/usr/share/pixmaps
。