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