blob: f8dacf82e593e3a450738cfdaf461d73ec1f9444 (
plain)
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 (
"context"
"log/slog"
"os"
"github.com/ChausseBenjamin/termpicker/internal/logging"
"github.com/ChausseBenjamin/termpicker/internal/switcher"
"github.com/ChausseBenjamin/termpicker/internal/util"
tea "github.com/charmbracelet/bubbletea"
"github.com/urfave/cli/v3"
)
// Set by the build system
var version = "compiled"
func AppAction(ctx context.Context, cmd *cli.Command) error {
logfile := logging.Setup(cmd.String("logfile"))
defer logfile.Close()
slog.Info("Starting Termpicker")
sw := switcher.New()
if colorStr := cmd.String("color"); colorStr != "" {
sw.NewNotice(sw.SetColorFromText(colorStr))
}
p := tea.NewProgram(sw)
if _, err := p.Run(); err != nil {
return err
}
return nil
}
func main() {
app := &cli.Command{
Name: "Termpicker",
Usage: "A terminal-based color picker",
Action: AppAction,
Authors: []any{"Benjamin Chausse <benjamin@chausse.xhz>"},
Version: version,
Flags: AppFlags,
EnableShellCompletion: true,
}
if err := app.Run(context.Background(), os.Args); err != nil {
slog.Error("Program crashed", util.ErrKey, err.Error())
os.Exit(1)
}
}
|