Skip to content

Commit 8f79ecd

Browse files
committed
Create & install 16, 24, 32, 48, 64px icons
1 parent 8f2ef93 commit 8f79ecd

7 files changed

+10
-3
lines changed
File renamed without changes.
729 Bytes
Loading
1.21 KB
Loading
1.67 KB
Loading
3.07 KB
Loading
4.2 KB
Loading

data/meson.build

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
1-
install_data('icons/com.github.writeas.writeas-gtk.png',
2-
install_dir: join_paths(get_option('datadir'), 'icons', 'hicolor', '128x128', 'apps')
3-
)
1+
icon_sizes = ['16', '24', '32', '48', '64', '128']
2+
3+
foreach i : icon_sizes
4+
install_data(
5+
join_paths('icons', i, meson.project_name() + '.png'),
6+
install_dir: join_paths(get_option('datadir'), 'icons', 'hicolor', i + 'x' + i, 'apps'
7+
)
8+
)
9+
endforeach
10+
411
install_data('icons/writeas-bright-dark.png',
512
install_dir: join_paths(get_option('datadir'), 'icons', 'hicolor', '16x16', 'actions'))
613

0 commit comments

Comments
 (0)