diff --git a/src/main/kotlin/com/marvinelsen/willow/WillowApplication.kt b/src/main/kotlin/com/marvinelsen/willow/WillowApplication.kt index 452c38b..d9130ba 100644 --- a/src/main/kotlin/com/marvinelsen/willow/WillowApplication.kt +++ b/src/main/kotlin/com/marvinelsen/willow/WillowApplication.kt @@ -12,6 +12,7 @@ import com.marvinelsen.willow.ui.util.SearchService import javafx.application.Application import javafx.fxml.FXMLLoader import javafx.scene.Scene +import javafx.scene.image.Image import javafx.scene.layout.BorderPane import javafx.scene.text.Font import javafx.stage.Stage @@ -69,6 +70,7 @@ class WillowApplication : Application() { minWidth = WINDOW_MIN_WIDTH minHeight = WINDOW_MIN_HEIGHT scene = primaryScene + icons.add(Image(javaClass.getResourceAsStream("/img/icon.png"))) }.show() } diff --git a/src/main/resources/img/icon.png b/src/main/resources/img/icon.png new file mode 100644 index 0000000..74905f5 Binary files /dev/null and b/src/main/resources/img/icon.png differ diff --git a/src/main/resources/img/logo.xcf b/src/main/resources/img/logo.xcf new file mode 100644 index 0000000..f60282d Binary files /dev/null and b/src/main/resources/img/logo.xcf differ