reverse headed and headless to improve readability

This commit is contained in:
Antoni Sawicki 2020-10-26 01:37:25 -07:00
parent 1ddf005a23
commit 3ff226e1df
1 changed files with 2 additions and 7 deletions

9
wrp.go
View File

@ -397,21 +397,16 @@ func (w wrpReq) capture() {
// Main...
func main() {
var addr, fgeom string
var head, headless bool
var headless bool
var debug bool
var err error
flag.StringVar(&addr, "l", ":8080", "Listen address:port, default :8080")
flag.BoolVar(&head, "h", false, "Headed mode - display browser window")
flag.BoolVar(&headless, "h", true, "Headless mode - hide browser window")
flag.BoolVar(&debug, "d", false, "Debug ChromeDP")
flag.BoolVar(&nodel, "n", false, "Do not free maps and images after use")
flag.StringVar(&deftype, "t", "gif", "Image type: gif|png")
flag.StringVar(&fgeom, "g", "1152x600x256", "Geometry: width x height x colors, height can be 0 for unlimited")
flag.Parse()
if head {
headless = false
} else {
headless = true
}
if len(os.Getenv("PORT")) > 0 {
addr = ":" + os.Getenv(("PORT"))
}