summaryrefslogtreecommitdiff
path: root/notsure.go
diff options
context:
space:
mode:
Diffstat (limited to 'notsure.go')
-rw-r--r--notsure.go16
1 files changed, 16 insertions, 0 deletions
diff --git a/notsure.go b/notsure.go
index 8125bb6..ee73baa 100644
--- a/notsure.go
+++ b/notsure.go
@@ -1,5 +1,7 @@
package argvpb
+import "go.wit.com/log"
+
// these are things I'm not sure about doing
// or haven't figured out what to do with
// or are generally part of idiocracy
@@ -21,3 +23,17 @@ func AppName() string {
func (pb *Argv) Verbose() bool {
return true
}
+
+// maybe this is a good idea, maybe not
+func (pb *Argv) Gui() bool {
+ log.Printf("CUR pb: %v\n", pb)
+ log.Info("CUR ARGV:", pb.Real)
+ if pb.Cmd == "gui" {
+ return true
+ }
+ return false
+}
+
+func (pb *Argv) Dump() {
+ log.Printf("CUR pb: %v\n", pb)
+}