From 40df97aed0c484a2b10b89744f6858514e666e1f Mon Sep 17 00:00:00 2001 From: gnat Date: Fri, 14 Feb 2025 02:04:05 -0800 Subject: [PATCH] remove test code --- astal/test.hy | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 astal/test.hy diff --git a/astal/test.hy b/astal/test.hy deleted file mode 100644 index a8f638d..0000000 --- a/astal/test.hy +++ /dev/null @@ -1,20 +0,0 @@ -(import astalify [Label Box]) -(import binding *) -(import app [App]) - -(import gi) -(.require_version gi "Astal" "3.0") - -(import gi.repository [Astal]) - -(.start App (dict - :main (fn [] - (setv test (Astal.Window - :child (Box - :vertical True - :children [ - (Label :label "aoeu") - (Label :label "asdf")]))) - (.show_all test) - (.add_window App test)) - :instance_name "aoeu"))