From be71bf80d290c98c0f6a66d3dcab28515b4ea371 Mon Sep 17 00:00:00 2001 From: Lucas Fryzek Date: Fri, 4 Oct 2024 20:53:17 +0100 Subject: Initial commit --- .../scalable/apps/com.fryzekconcepts.weegtk.svg | 130 +++++++++++++++++++++ .../apps/com.fryzekconcepts.weegtk-symbolic.svg | 1 + data/icons/meson.build | 13 +++ 3 files changed, 144 insertions(+) create mode 100644 data/icons/hicolor/scalable/apps/com.fryzekconcepts.weegtk.svg create mode 100644 data/icons/hicolor/symbolic/apps/com.fryzekconcepts.weegtk-symbolic.svg create mode 100644 data/icons/meson.build (limited to 'data/icons') diff --git a/data/icons/hicolor/scalable/apps/com.fryzekconcepts.weegtk.svg b/data/icons/hicolor/scalable/apps/com.fryzekconcepts.weegtk.svg new file mode 100644 index 0000000..a74c4df --- /dev/null +++ b/data/icons/hicolor/scalable/apps/com.fryzekconcepts.weegtk.svg @@ -0,0 +1,130 @@ + + + + + + + + + + + + + + image/svg+xml + + + + + + + + application-x-executable + + + + + + + + + + + + + + + + diff --git a/data/icons/hicolor/symbolic/apps/com.fryzekconcepts.weegtk-symbolic.svg b/data/icons/hicolor/symbolic/apps/com.fryzekconcepts.weegtk-symbolic.svg new file mode 100644 index 0000000..0444828 --- /dev/null +++ b/data/icons/hicolor/symbolic/apps/com.fryzekconcepts.weegtk-symbolic.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/icons/meson.build b/data/icons/meson.build new file mode 100644 index 0000000..d850b9c --- /dev/null +++ b/data/icons/meson.build @@ -0,0 +1,13 @@ +application_id = 'com.fryzekconcepts.weegtk' + +scalable_dir = 'hicolor' / 'scalable' / 'apps' +install_data( + scalable_dir / ('@0@.svg').format(application_id), + install_dir: get_option('datadir') / 'icons' / scalable_dir +) + +symbolic_dir = 'hicolor' / 'symbolic' / 'apps' +install_data( + symbolic_dir / ('@0@-symbolic.svg').format(application_id), + install_dir: get_option('datadir') / 'icons' / symbolic_dir +) -- cgit