Compare commits

..

4 commits

Author SHA1 Message Date
33ce567115 Reversing a debugging edit 2023-11-25 10:48:07 -05:00
6c5cc39107 Testing out git and ssh 2023-02-11 09:51:18 -05:00
1e6cda3331 Add w3m to command list 2022-05-20 09:00:37 -04:00
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

43
main.go
View file

@ -1,5 +1,7 @@
package main package main
// Testing out tea; really, git and ssh
import ( import (
"fmt" "fmt"
"io/fs" "io/fs"
@ -12,22 +14,16 @@ import (
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
} }
@ -37,8 +33,6 @@ 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)
@ -52,8 +46,6 @@ func getBrowserSessions() []commandChoice {
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") {
@ -64,7 +56,6 @@ func getBrowserSessions() []commandChoice {
}) })
} }
} }
// log.Printf("result: %v", result)
return result return result
} }
@ -75,7 +66,7 @@ func initialModel() model {
getBrowserSessions(), getBrowserSessions(),
commandChoice{ commandChoice{
displayString: "bottom", 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{ commandChoice{
displayString: "broot", displayString: "broot",
@ -93,6 +84,10 @@ 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{}),
} }
@ -103,7 +98,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("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 {
@ -112,9 +107,7 @@ func launch(m model) tea.Cmd {
} }
} }
} }
time.Sleep(2000 * time.Millisecond) time.Sleep(2000 * time.Millisecond)
return result return result
} }
} }
@ -173,7 +166,6 @@ 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"
@ -182,14 +174,15 @@ func (m model) View() string {
} }
func main() { func main() {
// Logging example from the Bubbletea "simple" example. For some logfilePath := os.Getenv("BREAKFAST_LOG")
// reason there's no file variable, and hence no file to `.Close()`. if logfilePath == "" {
logfilePath := os.Getenv("BUBBLETEA_LOG") logfilePath = fmt.Sprintf("/tmp/%s_breakfast.log", time.Now().Local().Format("20060102150405-0700"))
if logfilePath != "" {
if _, err := tea.LogToFile(logfilePath, "DEBUG"); err != nil {
log.Fatal(err)
}
} }
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 {