2023-02-08 11:04:04 -06:00
|
|
|
package main
|
|
|
|
|
2023-12-16 09:02:59 -06:00
|
|
|
/*
|
|
|
|
this parses the command line arguements
|
2023-12-29 17:29:47 -06:00
|
|
|
|
|
|
|
this enables command line options from other packages like 'gui' and 'log'
|
2023-12-16 09:02:59 -06:00
|
|
|
*/
|
|
|
|
|
2023-02-08 11:04:04 -06:00
|
|
|
import (
|
2023-12-16 12:59:18 -06:00
|
|
|
"log"
|
2023-12-20 03:13:43 -06:00
|
|
|
"time"
|
2023-12-16 09:02:59 -06:00
|
|
|
arg "github.com/alexflint/go-arg"
|
2023-12-20 15:12:26 -06:00
|
|
|
"go.wit.com/gui"
|
2023-02-08 11:04:04 -06:00
|
|
|
)
|
|
|
|
|
2023-12-16 09:02:59 -06:00
|
|
|
var args struct {
|
2023-04-07 11:23:47 -05:00
|
|
|
Display string `arg:"env:DISPLAY"`
|
2023-12-29 17:29:47 -06:00
|
|
|
VerboseDNS bool `arg:"--verbose-dns" help:"debug your dns settings"`
|
2023-02-08 11:04:04 -06:00
|
|
|
}
|
2023-03-01 11:21:47 -06:00
|
|
|
|
2023-12-16 09:02:59 -06:00
|
|
|
func init() {
|
|
|
|
arg.MustParse(&args)
|
2023-12-29 17:29:47 -06:00
|
|
|
// fmt.Println(args.Foo, args.Bar, args.User)
|
2023-12-16 09:02:59 -06:00
|
|
|
|
2023-12-29 17:29:47 -06:00
|
|
|
if gui.ArgDebug() {
|
|
|
|
log.Println(true, "INIT() gui debug == true")
|
|
|
|
} else {
|
|
|
|
log.Println(true, "INIT() gui debug == false")
|
2023-12-16 09:02:59 -06:00
|
|
|
}
|
2023-12-16 12:59:18 -06:00
|
|
|
|
2023-12-20 03:13:43 -06:00
|
|
|
me.dnsSleep = 500 * time.Millisecond
|
|
|
|
me.localSleep = 100 * time.Millisecond
|
2023-12-16 12:59:18 -06:00
|
|
|
|
2023-12-21 17:56:56 -06:00
|
|
|
me.artificialSleep = 0.4 // seems to need to exist or GTK crashes. TODO: fix andlabs plugin
|
2023-12-20 03:13:43 -06:00
|
|
|
me.artificialS = "blah"
|
|
|
|
log.Println("init() me.artificialSleep =", me.artificialSleep)
|
|
|
|
log.Println("init() me.artificialS =", me.artificialS)
|
|
|
|
sleep(me.artificialSleep)
|
2023-03-01 11:21:47 -06:00
|
|
|
}
|