diff --git a/.idea/misc.xml b/.idea/misc.xml
index 49504efe3418dd3941f2fe28e1d2a070c7367046..0c487975da8941e5117af364bd1c067631054a7f 100644
--- a/.idea/misc.xml
+++ b/.idea/misc.xml
@@ -2,4 +2,7 @@
 <project version="4">
   <component name="ExternalStorageConfigurationManager" enabled="true" />
   <component name="ProjectRootManager" version="2" languageLevel="JDK_17" default="true" project-jdk-name="17" project-jdk-type="JavaSDK" />
+  <component name="SuppressKotlinCodeStyleNotification">
+    <option name="disableForAll" value="true" />
+  </component>
 </project>
\ No newline at end of file
diff --git a/buildSrc/build.gradle b/buildSrc/build.gradle
index 28a606b6125792ee1b1f836e4f0c63a36d234d6e..2aa0c8482afc566c889590c21de58059004c5a99 100644
--- a/buildSrc/build.gradle
+++ b/buildSrc/build.gradle
@@ -7,6 +7,7 @@ plugins {
     id 'groovy-gradle-plugin'
 }
 
+
 repositories {
     // Use the plugin portal to apply community plugins in convention plugins.
     gradlePluginPortal()
diff --git a/console/build.gradle b/console/build.gradle
index 127f593824197af01f3a9e31f4d01936d3ab1075..c32e5dfcae2acbfa480e1943db2dbe92317bc277 100644
--- a/console/build.gradle
+++ b/console/build.gradle
@@ -4,6 +4,14 @@
 
 plugins {
     id 'notes.multi.kotlin-application-conventions'
+    id 'application'
+    id 'org.jetbrains.kotlin.jvm'
+    id 'org.openjfx.javafxplugin' version '0.0.13'
+}
+
+javafx {
+    version = '18.0.2'
+    modules = ['javafx.controls', 'javafx.graphics']
 }
 
 dependencies {
diff --git a/console/src/main/kotlin/notes/multi/console/Console.kt b/console/src/main/kotlin/notes/multi/console/Console.kt
index 7db3c2789822e1b85a45bc11572aec029ae85610..9ae4ea55dd68c40ca4aadf2650c698d2a7b1ee5d 100644
--- a/console/src/main/kotlin/notes/multi/console/Console.kt
+++ b/console/src/main/kotlin/notes/multi/console/Console.kt
@@ -5,10 +5,20 @@ package notes.multi.console
 
 import notes.multi.utilities.Filemanager
 
+import notes.multi.utilities.Note
+import notes.multi.utilities.TextWindow
+import javafx.application.Application
+
 fun main() {
     // thesea re test functions feel free to use
-    val f = Filemanager("${System.getProperty("user.dir")}/test/", "hello.txt")
-    f.writefile("hello world")
-    f.deletefile()
-    println(f.openfile())
+    val n = Note()
+    val noteTitle = n.title
+    val noteContent = n.text.toString()
+    println(noteContent)
+    Application.launch(TextWindow()::class.java, "--title=${noteTitle}", "--text=${noteContent}")
+
+    // val f = Filemanager("${System.getProperty("user.dir")}/test/", "hello.txt")
+    // f.writefile("hello world")
+    // f.deletefile()
+    // println(f.openfile())
 }
diff --git a/utilities/build.gradle b/utilities/build.gradle
index 5a6881d1afdb290ec1fc2c78b118e800181572cb..12591b8a4fbeb35c1914f5f7e403b312f225720c 100644
--- a/utilities/build.gradle
+++ b/utilities/build.gradle
@@ -4,6 +4,14 @@
 
 plugins {
     id 'notes.multi.kotlin-library-conventions'
+    id 'application'
+    id 'org.jetbrains.kotlin.jvm'
+    id 'org.openjfx.javafxplugin' version '0.0.13'
+}
+
+javafx {
+    version = '18.0.2'
+    modules = ['javafx.controls', 'javafx.graphics']
 }
 
 dependencies {
diff --git a/utilities/src/main/kotlin/notes/multi/utilities/NoteTextWindow.kt b/utilities/src/main/kotlin/notes/multi/utilities/NoteTextWindow.kt
new file mode 100644
index 0000000000000000000000000000000000000000..e8fafe2d2943428b1e42edcd97552e940243f907
--- /dev/null
+++ b/utilities/src/main/kotlin/notes/multi/utilities/NoteTextWindow.kt
@@ -0,0 +1,50 @@
+package notes.multi.utilities
+
+import javafx.application.Application
+import javafx.stage.Stage
+import javafx.scene.Scene
+import javafx.scene.control.ScrollPane
+import javafx.scene.control.TextArea
+import javafx.scene.layout.VBox
+import javafx.scene.layout.AnchorPane
+import javafx.application.Application.Parameters
+import javafx.scene.layout.Priority
+
+class TextWindow(): Application() {
+    var paramsMap = mutableMapOf<String, String>()
+    override fun init() {
+        super.init()
+        val params = getParameters()
+        paramsMap = params.getNamed()
+    }
+
+    override fun start(stage: Stage) {
+        stage.setTitle(paramsMap["title"])
+        val textarea = TextArea()
+        textarea.setText(paramsMap["text"])
+        textarea.setWrapText(true)
+        val scroll = ScrollPane()
+        val anchor = AnchorPane(textarea)
+
+        AnchorPane.setTopAnchor(textarea, 0.0)
+        AnchorPane.setBottomAnchor(textarea, 0.0)
+        AnchorPane.setLeftAnchor(textarea, 0.0)
+        AnchorPane.setRightAnchor(textarea, 0.0)
+
+        scroll.setFitToHeight(true)
+        scroll.setHmin(300.0)
+        scroll.setFitToWidth(true)
+
+        // REMOVE THESE COMMENTS
+        // println("===========")
+        // println(scroll.isFitToHeight)
+        // println(scroll.isFitToWidth)
+
+        scroll.content = textarea
+        val box = VBox(anchor)
+        VBox.setVgrow(anchor, Priority.ALWAYS)
+
+        stage.scene = Scene(box, 300.0, 300.0)
+        stage.show()
+    }
+}
\ No newline at end of file