From 43b6a3f51fb7796e6bf1e1c02af641ee69ebb106 Mon Sep 17 00:00:00 2001 From: limepotato Date: Fri, 16 Feb 2024 02:50:47 -0700 Subject: [PATCH] Sandwich! --- src/main/kotlin/org/bm00/data-accessor/main.kt | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) 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() }