From 7aaeec3ab6c4d4a6437b0205902cfc6307683b1e Mon Sep 17 00:00:00 2001 From: Adam Cooper Date: Mon, 16 May 2022 13:07:51 -0400 Subject: [PATCH] Fill out commands list --- main.go | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/main.go b/main.go index 064a3f0..076a4b7 100644 --- a/main.go +++ b/main.go @@ -80,14 +80,20 @@ func initialModel() model { choices: Choices{ getBrowserSessions(), []sessionOrCommand{{ - displayString: "newsboat", - command: exec.Command("xterm", "-maximized", "-e", "newsboat"), - }, { displayString: "bottom", command: exec.Command("xterm", "-maximized", "-e", "btm", "--group", "--battery", "--color", "gruvbox-light"), }, { displayString: "broot", command: exec.Command("xterm", "-maximized", "-e", "broot"), + }, { + displayString: "joplin", + command: exec.Command("xterm", "-maximized", "-e", "joplin"), + }, { + displayString: "neomutt", + command: exec.Command("xterm", "-maximized", "-e", "neomutt"), + }, { + displayString: "newsboat", + command: exec.Command("xterm", "-maximized", "-e", "newsboat"), }}, }, // An array of maps which indicates which choices are selected.