Fixed loaded message, Tray by default

This commit is contained in:
Harvey Tindall 2021-05-23 22:12:47 +01:00
parent d7e8ec95de
commit f419a57e6d
Signed by: hrfee
GPG Key ID: BBC65952848FB1A2
1 changed files with 6 additions and 6 deletions

12
main.go
View File

@ -621,12 +621,12 @@ func start(asDaemon, firstCall bool) {
app.err.Printf("Failure serving: %s", err) app.err.Printf("Failure serving: %s", err)
} }
} }
if firstRun {
app.info.Printf("Loaded, visit %s to start.", address)
} else {
app.info.Printf("Loaded @ %s", address)
}
}() }()
if firstRun {
app.info.Printf("Loaded, visit %s to start.", address)
} else {
app.info.Printf("Loaded @ %s", address)
}
app.quit = make(chan os.Signal) app.quit = make(chan os.Signal)
signal.Notify(app.quit, os.Interrupt) signal.Notify(app.quit, os.Interrupt)
go func() { go func() {
@ -779,7 +779,7 @@ You can then run:
fmt.Print(info("systemctl --user stop jfa-go\n\n")) fmt.Print(info("systemctl --user stop jfa-go\n\n"))
color.New(color.FgYellow).PrintFunc()("To restart: ") color.New(color.FgYellow).PrintFunc()("To restart: ")
fmt.Print(info("systemctl --user stop jfa-go\n")) fmt.Print(info("systemctl --user stop jfa-go\n"))
} else if TRAY && flagPassed("tray") { } else if TRAY {
RunTray() RunTray()
} else { } else {
RESTART = make(chan bool, 1) RESTART = make(chan bool, 1)