diff --git a/Base/res/icons/16x16/app-starfield.png b/Base/res/icons/16x16/app-starfield.png new file mode 100644 index 00000000000..a2b17cfffea Binary files /dev/null and b/Base/res/icons/16x16/app-starfield.png differ diff --git a/Base/res/icons/32x32/app-starfield.png b/Base/res/icons/32x32/app-starfield.png new file mode 100644 index 00000000000..553f06896c6 Binary files /dev/null and b/Base/res/icons/32x32/app-starfield.png differ diff --git a/Userland/Demos/Starfield/CMakeLists.txt b/Userland/Demos/Starfield/CMakeLists.txt index b9ddd1afabd..8680be05d35 100644 --- a/Userland/Demos/Starfield/CMakeLists.txt +++ b/Userland/Demos/Starfield/CMakeLists.txt @@ -7,5 +7,5 @@ set(SOURCES Starfield.cpp ) -serenity_app(Starfield ICON app-screensaver) +serenity_app(Starfield ICON app-starfield) target_link_libraries(Starfield LibGUI LibCore LibGfx LibMain) diff --git a/Userland/Demos/Starfield/Starfield.cpp b/Userland/Demos/Starfield/Starfield.cpp index 27a4419fade..d1c3ec6fb9f 100644 --- a/Userland/Demos/Starfield/Starfield.cpp +++ b/Userland/Demos/Starfield/Starfield.cpp @@ -167,7 +167,7 @@ ErrorOr serenity_main(Main::Arguments arguments) TRY(Core::System::pledge("stdio recvfd sendfd rpath")); - auto app_icon = GUI::Icon::default_icon("app-screensaver"); + auto app_icon = GUI::Icon::default_icon("app-starfield"); auto window = TRY(GUI::Window::try_create()); window->set_double_buffering_enabled(true);