Icons
Size
AppCenter
Applications Menu
Dock
Menus & Popovers
Multitasking
Notifications
hello-again
data
16.svg
24.svg
32.svg
48.svg
64.svg
128.svg# Install our icons in all the required sizes
icon_sizes = ['16', '24', '32', '48', '64', '128']
foreach i : icon_sizes
install_data(
'data' / i + '.svg',
install_dir: get_option('datadir') / 'icons' / 'hicolor' / i + 'x' + i / 'apps',
rename: meson.project_name() + '.svg'
)
install_data(
'data' / i + '.svg',
install_dir: get_option('datadir') / 'icons' / 'hicolor' / i + 'x' + i + '@2' / 'apps',
rename: meson.project_name() + '.svg'
)
endforeachLast updated
Was this helpful?