From f522178881dc6c1dc25aba3884ac67899a4c0384 Mon Sep 17 00:00:00 2001 From: Cubic Love <7754483+cubiclove@users.noreply.github.com> Date: Thu, 6 Apr 2023 22:09:39 +0100 Subject: [PATCH] Base: Add icons for Assistant Add 32px and 16px application icons for Assistant --- Base/res/icons/16x16/app-assistant.png | Bin 0 -> 178 bytes Base/res/icons/32x32/app-assistant.png | Bin 0 -> 325 bytes Userland/Applications/Assistant/CMakeLists.txt | 2 +- 3 files changed, 1 insertion(+), 1 deletion(-) create mode 100644 Base/res/icons/16x16/app-assistant.png create mode 100644 Base/res/icons/32x32/app-assistant.png diff --git a/Base/res/icons/16x16/app-assistant.png b/Base/res/icons/16x16/app-assistant.png new file mode 100644 index 0000000000000000000000000000000000000000..8f58b66abdd2e16c50bd0963cd1c2f816dc3f146 GIT binary patch literal 178 zcmeAS@N?(olHy`uVBq!ia0y~yU=RRd7G?$phPQVgfdqsCd_r6qz#uC1P{@am10hC~um$_|NcE2-TLE-@}5u?Lj=nwqo}1l3*H*c3%w*%VzTlqtHlH11$z XSaX9@pF^lj1!T9UtDnm{r-UW|k4!Zh literal 0 HcmV?d00001 diff --git a/Base/res/icons/32x32/app-assistant.png b/Base/res/icons/32x32/app-assistant.png new file mode 100644 index 0000000000000000000000000000000000000000..53dc2eba4f5a16d16de0ac98c3cfd74556a4a6ea GIT binary patch literal 325 zcmeAS@N?(olHy`uVBq!ia0y~yU{C;I4rT@h2A3sW#~2tGj01c^Tp7S1D)mrKPEJc( z%d}a$Hg4RwbI;A)doS(Vx9`~TW0$Z0zjp1~lP6D}K7IP?)vN#i|L^v6HDh34U@Qsp z3ubV5b|Z~}f#HCsi(`nz>9dzl3pFe7umjv#8CvBvu!ZW9ib#4{Vv&T=>PdWzn_m50t0vVr973^mU&nnm%mdE{T= z{3N5Y*&!`FgE6FJ60e8i5+~jTO3`N(FZ+o4Y+uPVYqDhN%|@s8gxaIiAH2F07h7HO cNZtM!_o-0v4VFFE?}LKF)78&qol`;+0NWXm!2kdN literal 0 HcmV?d00001 diff --git a/Userland/Applications/Assistant/CMakeLists.txt b/Userland/Applications/Assistant/CMakeLists.txt index 41f6f1909f..06a3367897 100644 --- a/Userland/Applications/Assistant/CMakeLists.txt +++ b/Userland/Applications/Assistant/CMakeLists.txt @@ -9,5 +9,5 @@ set(SOURCES main.cpp ) -serenity_app(Assistant ICON app-run) +serenity_app(Assistant ICON app-assistant) target_link_libraries(Assistant PRIVATE LibCore LibDesktop LibGfx LibGUI LibJS LibMain LibThreading)