Çoğu zaman, simge, mutlak yol olarak adlandırılmak yerine geçerli simge temanızdan seçilecektir.
- Gedit'i aç
- Başlatıcıyı Gedit penceresine sürükleyin
Icon
Tanımı arayın :
Icon=gnome-panel-launcher
Daha sonra simge bulabilirsiniz bir yerlerde de /usr/share/icons
Temanıza bağlı.
İşte sizin için doğru simge yolunu bulan hızlı bir python betiği:
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"
Bir yere sakla ve koş python /path/to/script.py
.
Bu gibi görünecek:
stefano@lenovo:~$ python test.py
enter the icon name (case sensitive):
>>> gtk-execute
/usr/share/icons/Humanity/actions/48/gtk-execute.svg
Alternatif olarak, aradığınız /usr/share/icons
simgeyi bulana kadar dolaşabilirsiniz .
Çok daha kolay: Başlatıcıyı kopyalayıp yapıştırabilir ve ad ile komutu değiştirebilirsiniz
EDIT 2018
Yukarıdaki betiğin güncellenmiş sürümü:
#!/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/pixmaps
.