summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-10-17 16:30:14 -0500
committerJeff Carr <[email protected]>2025-10-17 16:30:14 -0500
commit618bcf3a36f2229fb819be8164783e945c157a5a (patch)
tree9f9e3490498ce722a89bf2e931c65400c0bb76db /main.go
parent3580a2bba32f43e0a54d882eae0f51239e6e540c (diff)
renamed to argvpb
Diffstat (limited to 'main.go')
-rw-r--r--main.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/main.go b/main.go
index 9b7bacd..0fdd559 100644
--- a/main.go
+++ b/main.go
@@ -8,7 +8,7 @@ package main
import (
"fmt"
- "go.wit.com/lib/gui/prep"
+ "go.wit.com/lib/protobuf/argvpb"
"go.wit.com/log"
)
@@ -26,8 +26,8 @@ var configFile string = "/home/jcarr/.config/startxplacement.out"
func main() {
me = new(mainType)
- me.myGui = prep.Gui() // prepares the GUI package for go-args
- me.auto = prep.Bash3(&argv) // add support for bash autocomplete with go-arg
+ me.myGui = argvpb.Gui() // prepares the GUI package for go-args
+ me.argv = argvpb.Autocomplete(&argv) // adds shell auto complete to go-args
if argv.DumpX != nil {
doDumpX()