Compare commits
10 commits
006-debug-
...
main
Author | SHA1 | Date | |
---|---|---|---|
33ce567115 | |||
6c5cc39107 | |||
1e6cda3331 | |||
bd9cbc99b9 | |||
f3e6d604c2 | |||
a084c771b7 | |||
7b55a29cea | |||
d020c708cb | |||
443b3a0765 | |||
de57745090 |
2 changed files with 28 additions and 30 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -17,3 +17,6 @@ breakfast
|
|||
|
||||
# Go workspace file
|
||||
go.work
|
||||
|
||||
# Logs
|
||||
logs/
|
||||
|
|
55
main.go
55
main.go
|
@ -1,5 +1,7 @@
|
|||
package main
|
||||
|
||||
// Testing out tea; really, git and ssh
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"io/fs"
|
||||
|
@ -7,26 +9,21 @@ import (
|
|||
"os"
|
||||
"os/exec"
|
||||
"strings"
|
||||
"time"
|
||||
|
||||
tea "github.com/charmbracelet/bubbletea"
|
||||
)
|
||||
|
||||
// Enum for the different launch types (browsers and CLI's)
|
||||
const (
|
||||
BrowserSessions int = iota
|
||||
Commands
|
||||
)
|
||||
|
||||
type commandChoice struct {
|
||||
displayString string
|
||||
command *exec.Cmd
|
||||
}
|
||||
|
||||
type Choices []commandChoice
|
||||
type choices []commandChoice
|
||||
|
||||
type model struct {
|
||||
cursor int
|
||||
choices Choices
|
||||
choices choices
|
||||
selected map[int]struct{}
|
||||
status string
|
||||
}
|
||||
|
@ -36,34 +33,29 @@ type statusMsg string
|
|||
var selection map[int]struct{}
|
||||
|
||||
func getBrowserSessions() []commandChoice {
|
||||
// 1. List files in $XDG_DATA_HOME/qutebrowser/sessions/ (N.B.:
|
||||
// UserConfigDir() in os)
|
||||
userConfigDir, err := os.UserConfigDir()
|
||||
if err != nil {
|
||||
log.Printf("Error finding user configuration directory: %v", err)
|
||||
return []commandChoice{}
|
||||
}
|
||||
log.Printf("INFO userConfigDir: %+v", userConfigDir)
|
||||
log.Printf("userConfigDir: %+v", userConfigDir)
|
||||
fileSystem := os.DirFS(userConfigDir)
|
||||
log.Printf("INFO fileSystem: %+v", fileSystem)
|
||||
log.Printf("fileSystem: %+v", fileSystem)
|
||||
fileList, err := fs.ReadDir(fileSystem, "local/share/qutebrowser/sessions")
|
||||
if err != nil {
|
||||
log.Printf("Error reading browser sessions directory: %v", err)
|
||||
return []commandChoice{}
|
||||
}
|
||||
// 2. Exclude non-YAML files
|
||||
// 3. Wrangle them into this struct array
|
||||
result := make([]commandChoice, 0)
|
||||
for _, entry := range fileList {
|
||||
if !entry.IsDir() && strings.HasSuffix(entry.Name(), ".yml") {
|
||||
log.Printf("INFO %s", entry.Name())
|
||||
log.Printf("%s", entry.Name())
|
||||
result = append(result, commandChoice{
|
||||
displayString: fmt.Sprintf("Qutebrowser session: %s", strings.TrimSuffix(entry.Name(), ".yml")),
|
||||
command: exec.Command("xterm", "-e", "qutebrowser", "--target", "window", "--restore", strings.TrimSuffix(entry.Name(), ".yml")),
|
||||
})
|
||||
}
|
||||
}
|
||||
// log.Printf("result: %v", result)
|
||||
return result
|
||||
}
|
||||
|
||||
|
@ -74,7 +66,7 @@ func initialModel() model {
|
|||
getBrowserSessions(),
|
||||
commandChoice{
|
||||
displayString: "bottom",
|
||||
command: exec.Command("xterm", "-maximized", "-e", "btm", "--group", "--battery", "--color", "gruvbox-light"),
|
||||
command: exec.Command("xterm", "-maximized", "-e", "btm", "--battery", "--color", "gruvbox-light"),
|
||||
},
|
||||
commandChoice{
|
||||
displayString: "broot",
|
||||
|
@ -92,6 +84,10 @@ func initialModel() model {
|
|||
displayString: "newsboat",
|
||||
command: exec.Command("xterm", "-maximized", "-e", "newsboat"),
|
||||
},
|
||||
commandChoice{
|
||||
displayString: "w3m",
|
||||
command: exec.Command("xterm", "-maximized", "-e", "w3m", "https://languagehat.com/"),
|
||||
},
|
||||
),
|
||||
selected: make(map[int]struct{}),
|
||||
}
|
||||
|
@ -102,7 +98,7 @@ func launch(m model) tea.Cmd {
|
|||
var result statusMsg
|
||||
for q, item := range m.choices {
|
||||
if _, ok := m.selected[q]; ok {
|
||||
log.Printf("INFO launching: %v\n", item.displayString)
|
||||
log.Printf("Launching: %v\n", item.displayString)
|
||||
result += statusMsg(fmt.Sprintf("Launching command: %v\n", item.displayString))
|
||||
err := item.command.Start()
|
||||
if err != nil {
|
||||
|
@ -111,17 +107,7 @@ func launch(m model) tea.Cmd {
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
for r, item := range m.choices {
|
||||
if _, ok := m.selected[r]; ok {
|
||||
err := item.command.Wait()
|
||||
if err != nil {
|
||||
result += statusMsg(fmt.Sprintf("%v\n", err))
|
||||
log.Fatalf("Error during Wait(): %v\n", err)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
time.Sleep(2000 * time.Millisecond)
|
||||
return result
|
||||
}
|
||||
}
|
||||
|
@ -180,7 +166,6 @@ func (m model) View() string {
|
|||
}
|
||||
s += "\n\n"
|
||||
|
||||
// s += fmt.Sprintf("\n%+v", m.selected) // debug
|
||||
s += fmt.Sprintf("%s\n", m.status)
|
||||
s += "Press enter to launch.\n"
|
||||
s += "Press q to quit.\n"
|
||||
|
@ -189,6 +174,16 @@ func (m model) View() string {
|
|||
}
|
||||
|
||||
func main() {
|
||||
logfilePath := os.Getenv("BREAKFAST_LOG")
|
||||
if logfilePath == "" {
|
||||
logfilePath = fmt.Sprintf("/tmp/%s_breakfast.log", time.Now().Local().Format("20060102150405-0700"))
|
||||
}
|
||||
f, err := tea.LogToFile(logfilePath, "DEBUG")
|
||||
if err != nil {
|
||||
log.Fatal(err)
|
||||
}
|
||||
defer f.Close()
|
||||
|
||||
p := tea.NewProgram(initialModel())
|
||||
if err := p.Start(); err != nil {
|
||||
fmt.Printf("Alas, there's been an error: %v", err)
|
||||
|
|
Loading…
Reference in a new issue