Florian Müllner 306b005943 extensions-tool: Add small indicator template
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
2020-04-07 20:27:00 +00:00

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