summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-01-20 17:17:48 -0600
committerJeff Carr <[email protected]>2024-01-20 17:17:48 -0600
commit5f382cd5e317b7d76ff231e086de316fe5d4b626 (patch)
treee58c8121776a12d503d62103e7e5e25b31812af2 /main.go
parentd67ace479ae36375cc7bd10f316c65081b5abd1b (diff)
more button cleanups
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'main.go')
-rw-r--r--main.go15
1 files changed, 5 insertions, 10 deletions
diff --git a/main.go b/main.go
index 89ad900..a0ab8c8 100644
--- a/main.go
+++ b/main.go
@@ -26,8 +26,9 @@ func main() {
autotypistWindow()
repoworld()
- log.Sleep(.3)
- // hidePerfect()
+
+ // keeps the app alive
+ // TODO: rescan the status of the repos every so often?
gui.Watchdog()
}
@@ -78,18 +79,12 @@ func addRepo(grid *gui.Node, path string, master string, devel string, user stri
}
func autotypistWindow() {
- /*
- me.autotypistWindow = gadgets.NewBasicWindow(me.myGui, "autotypist for GO & git. it types faster than you can.")
- me.autotypistWindow.Make()
- me.autotypistWindow.StandardExit()
-
- box := me.autotypistWindow.Box()
- me.autotypistWindow.Draw()
- */
win := me.myGui.NewWindow("autotypist for GO & git. it types faster than you can.")
box := win.NewBox("bw hbox", true)
+
globalDisplayOptions(box)
globalBuildOptions(box)
+ globalTestingOptions(box)
globalResetOptions(box)
}