diff --git a/src/main/kotlin/org/bm00/data-accessor/main.kt b/src/main/kotlin/org/bm00/data-accessor/main.kt index 88356f5..07dc61a 100644 --- a/src/main/kotlin/org/bm00/data-accessor/main.kt +++ b/src/main/kotlin/org/bm00/data-accessor/main.kt @@ -1,8 +1,18 @@ package org.bm00.`data-accessor` +import jexer.TApplication import java.util.* +class Application : TApplication(BackendType.SWING) { + init { + ProgramWindow(this) + } +} + @Throws(Exception::class) fun main(args: Array) { - Runtime.getRuntime().exec("touch /home/limepot/Desktop/hello.world") + Runtime.getRuntime().exec("echo Hello-World") + Config() + val app = Application() + app.run() }