Compare commits

...

13 commits

Author SHA1 Message Date
Adam Cooper 6c5cc39107 Testing out git and ssh 2023-02-11 09:51:18 -05:00
Adam Cooper 1e6cda3331 Add w3m to command list 2022-05-20 09:00:37 -04:00
Adam Cooper bd9cbc99b9 FIX #9 Clean up
- Remove comments
- Set default log file
- Remove unused enums
- Remove --group flag from bottom command
2022-05-20 01:50:43 -04:00
Adam Cooper f3e6d604c2 FIX #8 Add sleep to launch function
Add sleep to launch function to give the launches time to start up
before quitting out of breakfast stomps on them
2022-05-20 01:17:50 -04:00
Adam Cooper a084c771b7 FIX #8 Remove Wait method call 2022-05-19 09:55:40 -04:00
Adam Cooper 7b55a29cea Merge branch 'main' into 008-quit-after-launch 2022-05-19 09:53:36 -04:00
Adam Cooper d020c708cb Remove INFO log tags now that log prefix is implemented 2022-05-18 08:52:53 -04:00
Adam Cooper 443b3a0765 FIX #10 Implement logging 2022-05-18 08:50:11 -04:00
Adam Cooper de57745090 (Stash change before switching branch) 2022-05-18 05:14:31 -04:00
Adam Cooper 1cdb274c4b Launch a terminal window to launch Qutebrowser
This seems to allow us to quit breakfast and leave the browser running
2022-05-17 14:28:55 -04:00
Adam Cooper 3c47906594 Call Wait() after all launches have started 2022-05-17 09:19:58 -04:00
Adam Cooper 05ebff0260 FIX #7 Remove item distinction
Remove distinction between browser sessions and commands in model
2022-05-17 09:09:13 -04:00
Adam Cooper 7aaeec3ab6 Fill out commands list 2022-05-16 13:07:51 -04:00
2 changed files with 86 additions and 90 deletions

3
.gitignore vendored
View file

@ -17,3 +17,6 @@ breakfast
# Go workspace file
go.work
# Logs
logs/

173
main.go
View file

@ -1,5 +1,7 @@
package main
// Testing out tea; really, git and ssh
import (
"fmt"
"io/fs"
@ -7,113 +9,105 @@ 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 sessionOrCommand struct {
type commandChoice struct {
displayString string
command *exec.Cmd
}
type Choices [][]sessionOrCommand
type SelectionSet map[int]struct{}
type choices []commandChoice
type model struct {
activeSection int
cursor []int
choices Choices
selected []SelectionSet
status string
cursor int
choices choices
selected map[int]struct{}
status string
}
type statusMsg string
var browserSelection SelectionSet
var commandSelection SelectionSet
var selection map[int]struct{}
func getBrowserSessions() []sessionOrCommand {
// 1. List files in $XDG_DATA_HOME/qutebrowser/sessions/ (N.B.:
// UserConfigDir() in os)
func getBrowserSessions() []commandChoice {
userConfigDir, err := os.UserConfigDir()
if err != nil {
log.Printf("Error finding user configuration directory: %v", err)
return []sessionOrCommand{}
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 []sessionOrCommand{}
return []commandChoice{}
}
// 2. Exclude non-YAML files
// 3. Wrangle them into this struct array
result := make([]sessionOrCommand, 0)
result := make([]commandChoice, 0)
for _, entry := range fileList {
if !entry.IsDir() && strings.HasSuffix(entry.Name(), ".yml") {
log.Printf("INFO %s", entry.Name())
result = append(result, sessionOrCommand{
displayString: strings.TrimSuffix(entry.Name(), ".yml"),
command: exec.Command("qutebrowser", "--restore", strings.TrimSuffix(entry.Name(), ".yml")),
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
}
func initialModel() model {
browserSelection = make(SelectionSet)
commandSelection = make(SelectionSet)
return model{
activeSection: BrowserSessions,
cursor: []int{0, 0},
choices: Choices{
cursor: 0,
choices: append(
getBrowserSessions(),
[]sessionOrCommand{{
displayString: "newsboat",
command: exec.Command("xterm", "-maximized", "-e", "newsboat"),
}, {
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",
command: exec.Command("xterm", "-maximized", "-e", "broot"),
}},
},
// An array of maps which indicates which choices are selected.
// We're using the map like a mathematical set. The keys refer to
// the indexes of the `choices` slice, above.
selected: []SelectionSet{browserSelection, commandSelection},
},
commandChoice{
displayString: "joplin",
command: exec.Command("xterm", "-maximized", "-e", "joplin"),
},
commandChoice{
displayString: "neomutt",
command: exec.Command("xterm", "-maximized", "-e", "neomutt"),
},
commandChoice{
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{}),
}
}
func launch(m model) tea.Cmd {
return func() tea.Msg {
var result statusMsg
for p := 0; p < 2; p++ {
for q, item := range m.choices[p] {
if _, ok := m.selected[p][q]; ok {
log.Printf("INFO launching: %v\n", item.displayString)
result += statusMsg(fmt.Sprintf("Launching command: %v\n", item.displayString))
err := item.command.Start()
if err != nil {
result += statusMsg(fmt.Sprintf("%v\n", err))
log.Fatalf("Error launching: %v\n", err)
}
for q, item := range m.choices {
if _, ok := m.selected[q]; ok {
log.Printf("Launching: %v\n", item.displayString)
result += statusMsg(fmt.Sprintf("Launching command: %v\n", item.displayString))
err := item.command.Start()
if err != nil {
result += statusMsg(fmt.Sprintf("%v\n", err))
log.Fatalf("Error launching: %v\n", err)
}
}
}
time.Sleep(2000 * time.Millisecond)
return result
}
}
@ -131,26 +125,20 @@ func (m model) Update(msg tea.Msg) (tea.Model, tea.Cmd) {
switch msg.String() {
case "ctrl+c", "q":
return m, tea.Quit
case "tab":
if m.activeSection == BrowserSessions {
m.activeSection = Commands
} else {
m.activeSection = BrowserSessions
}
case "up", "k":
if m.cursor[m.activeSection] > 0 {
m.cursor[m.activeSection]--
if m.cursor > 0 {
m.cursor--
}
case "down", "j":
if m.cursor[m.activeSection] < len(m.choices[m.activeSection])-1 {
m.cursor[m.activeSection]++
if m.cursor < len(m.choices)-1 {
m.cursor++
}
case " ":
_, ok := m.selected[m.activeSection][m.cursor[m.activeSection]]
_, ok := m.selected[m.cursor]
if ok {
delete(m.selected[m.activeSection], m.cursor[m.activeSection])
delete(m.selected, m.cursor)
} else {
m.selected[m.activeSection][m.cursor[m.activeSection]] = struct{}{}
m.selected[m.cursor] = struct{}{}
}
case "enter":
return m, launch(m)
@ -161,26 +149,23 @@ func (m model) Update(msg tea.Msg) (tea.Model, tea.Cmd) {
}
func (m model) View() string {
s := "Let's get started!\n\n"
s := "\nLet's get started!\n\n"
for j := 0; j < 2; j++ {
for i, choice := range m.choices[j] {
cursor := " "
if m.cursor[j] == i {
cursor = ">"
}
checked := " "
if _, ok := m.selected[j][i]; ok {
checked = "x"
}
s += fmt.Sprintf("%s [%s] %s\n", cursor, checked, choice.displayString)
for i, choice := range m.choices {
cursor := " "
if m.cursor == i {
cursor = ">"
}
s += "\n\n"
}
// s += fmt.Sprintf("\n%+v", m.selected) // debug
checked := " "
if _, ok := m.selected[i]; ok {
checked = "x"
}
s += fmt.Sprintf("%s [%s] %s\n", cursor, checked, choice.displayString)
}
s += "\n\n"
s += fmt.Sprintf("%s\n", m.status)
s += "Press enter to launch.\n"
s += "Press q to quit.\n"
@ -189,6 +174,14 @@ 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"))
}
if _, err := tea.LogToFile(logfilePath, "DEBUG"); err != nil {
log.Fatal(err)
}
p := tea.NewProgram(initialModel())
if err := p.Start(); err != nil {
fmt.Printf("Alas, there's been an error: %v", err)