-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmain.go
More file actions
51 lines (38 loc) · 703 Bytes
/
main.go
File metadata and controls
51 lines (38 loc) · 703 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
package main
import (
"bufio"
"io"
"log"
"os/exec"
"sync"
"github.com/jroimartin/gocui"
)
var (
mu sync.Mutex
Scanner bufio.Scanner
CfxCmd *exec.Cmd
Writer io.WriteCloser
ServerName = ""
ServerPath = ""
Servers = make(map[string]string)
)
func main() {
getConfigValues()
getAllServers()
g, err := gocui.NewGui(gocui.OutputNormal)
if err != nil {
log.Panicln(err)
}
defer g.Close()
g.Cursor = true
g.BgColor = gocui.ColorBlack
g.FgColor = gocui.ColorWhite
g.SelFgColor = gocui.ColorGreen
g.SetManagerFunc(layout)
if err := keybinds(g); err != nil {
log.Panicln(err)
}
if err := g.MainLoop(); err != nil && err != gocui.ErrQuit {
log.Panicln(err)
}
}