![Florian Müllner](/assets/img/avatar_default.png)
Adding an additional icon to the top bar is one of the more common patterns used by extensions. Make this easier by providing a template for it. https://gitlab.gnome.org/GNOME/gnome-shell/merge_requests/812
14 lines
271 B
Meson
14 lines
271 B
Meson
template_metas = [
|
|
'00-plain.desktop',
|
|
'indicator.desktop',
|
|
]
|
|
template_deps = []
|
|
foreach template : template_metas
|
|
template_deps += i18n.merge_file(template,
|
|
input: template + '.in',
|
|
output: template,
|
|
po_dir: po_dir,
|
|
type: 'desktop',
|
|
)
|
|
endforeach
|