summaryrefslogtreecommitdiff
path: root/args.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-11-15 20:04:22 -0600
committerJeff Carr <[email protected]>2024-11-15 20:04:22 -0600
commitfd65e8f02e59f115c33fe73475742693027eebbd (patch)
treea7ddfc89b33322648948985e015fbbf1a0663a37 /args.go
parent8a144eb5fd1ea8a799af51d93518b8080e6624f1 (diff)
try to add --no-guiv0.22.6
Diffstat (limited to 'args.go')
-rw-r--r--args.go32
1 files changed, 0 insertions, 32 deletions
diff --git a/args.go b/args.go
deleted file mode 100644
index 861d55b..0000000
--- a/args.go
+++ /dev/null
@@ -1,32 +0,0 @@
-package gui
-
-import (
- "go.wit.com/dev/alexflint/arg"
-)
-
-var argGui ArgsGui
-
-/*
-This struct can be used with the go-arg package. These
-are the generic default command line arguments for the 'GUI' package
-*/
-type ArgsGui struct {
- GuiPlugin string `arg:"--gui" help:"Use this gui toolkit [andlabs,gocui,nocui,nogui]"`
- GuiVerbose bool `arg:"--gui-verbose" help:"enable all logging"`
-}
-
-/*
-used for command line options.
-This allows you to control the toolkit settings from the command line
-
- --debugger # opens the debugger
- --gui andlabs # loads the GTK toolkit on linux or Cocoa on mac
- --gui gocui # runs your program in the terminal in ncurses-like mode
-*/
-func ArgToolkit() string {
- return argGui.GuiPlugin
-}
-
-func init() {
- arg.Register(&argGui)
-}