2018-01-09 23:30:46 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2018-02-01 02:18:21 +00:00
|
|
|
"io"
|
|
|
|
"io/ioutil"
|
|
|
|
"log"
|
|
|
|
"os"
|
2018-01-10 13:35:26 +00:00
|
|
|
"time"
|
2018-01-10 00:18:19 +00:00
|
|
|
|
2018-02-01 02:18:21 +00:00
|
|
|
"github.com/mattn/go-isatty"
|
|
|
|
|
2018-01-10 00:18:19 +00:00
|
|
|
"git.sr.ht/~sircmpwn/aerc2/config"
|
2019-03-11 01:15:24 +00:00
|
|
|
"git.sr.ht/~sircmpwn/aerc2/commands"
|
2018-02-27 03:54:39 +00:00
|
|
|
libui "git.sr.ht/~sircmpwn/aerc2/lib/ui"
|
|
|
|
"git.sr.ht/~sircmpwn/aerc2/widgets"
|
2018-01-09 23:30:46 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
2019-01-13 17:39:06 +00:00
|
|
|
var (
|
|
|
|
logOut io.Writer
|
|
|
|
logger *log.Logger
|
|
|
|
)
|
2018-02-01 02:18:21 +00:00
|
|
|
if !isatty.IsTerminal(os.Stdout.Fd()) {
|
|
|
|
logOut = os.Stdout
|
|
|
|
} else {
|
|
|
|
logOut = ioutil.Discard
|
|
|
|
}
|
2018-02-01 23:59:13 +00:00
|
|
|
logger = log.New(logOut, "", log.LstdFlags)
|
2018-02-01 02:18:21 +00:00
|
|
|
logger.Println("Starting up aerc")
|
|
|
|
|
2018-01-10 16:19:45 +00:00
|
|
|
conf, err := config.LoadConfig(nil)
|
|
|
|
if err != nil {
|
2018-01-10 00:18:19 +00:00
|
|
|
panic(err)
|
|
|
|
}
|
2018-02-17 21:35:36 +00:00
|
|
|
|
2019-03-11 01:15:24 +00:00
|
|
|
var aerc *widgets.Aerc
|
|
|
|
aerc = widgets.NewAerc(conf, logger, func(cmd string) error {
|
|
|
|
return commands.ExecuteCommand(aerc, cmd)
|
|
|
|
})
|
|
|
|
|
|
|
|
ui, err := libui.Initialize(conf, aerc)
|
2018-01-11 03:41:15 +00:00
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
2018-02-27 03:54:39 +00:00
|
|
|
defer ui.Close()
|
2018-02-17 21:35:36 +00:00
|
|
|
|
2018-02-27 03:54:39 +00:00
|
|
|
for !ui.Exit {
|
|
|
|
if !ui.Tick() {
|
2018-02-27 03:41:54 +00:00
|
|
|
// ~60 FPS
|
|
|
|
time.Sleep(16 * time.Millisecond)
|
2018-01-10 13:35:26 +00:00
|
|
|
}
|
2018-01-10 01:39:00 +00:00
|
|
|
}
|
2018-01-09 23:30:46 +00:00
|
|
|
}
|