summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-11-06 16:02:11 -0600
committerJeff Carr <[email protected]>2024-11-06 16:02:11 -0600
commit1eb637cbf5101c13b5b271a32670e3aa56b12989 (patch)
tree472e62d92b6b0c7aa0205c7892151e2949369195 /main.go
parent32c023ac384eaf19d2f3a72e736632d465382d3e (diff)
attempt to keep the ncurses gui
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'main.go')
-rw-r--r--main.go5
1 files changed, 5 insertions, 0 deletions
diff --git a/main.go b/main.go
index 921a787..f7bc634 100644
--- a/main.go
+++ b/main.go
@@ -2,6 +2,7 @@
package main
import (
+ "embed"
"os"
"path/filepath"
@@ -20,6 +21,9 @@ var cBox *controlBox
// this is a basic window. the user can open and close it
var basicWindow *gadgets.BasicWindow
+//go:embed resources/*
+var resources embed.FS
+
func main() {
if argv.Repo == "" {
log.Info("You need to tell me what repo you want to work on")
@@ -28,6 +32,7 @@ func main() {
os.Exit(0)
}
myGui = gui.New()
+ myGui.InitEmbed(resources)
myGui.Default()
basicWindow = makebasicWindow()