From 1cdb274c4bc2b69bb1b3f44339898e633d4bae63 Mon Sep 17 00:00:00 2001 From: Adam Cooper Date: Tue, 17 May 2022 14:28:55 -0400 Subject: [PATCH] Launch a terminal window to launch Qutebrowser This seems to allow us to quit breakfast and leave the browser running --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index f4742e2..50ccd60 100644 --- a/main.go +++ b/main.go @@ -59,7 +59,7 @@ func getBrowserSessions() []commandChoice { log.Printf("INFO %s", entry.Name()) result = append(result, commandChoice{ displayString: fmt.Sprintf("Qutebrowser session: %s", strings.TrimSuffix(entry.Name(), ".yml")), - command: exec.Command("qutebrowser", "--target", "window", "--restore", strings.TrimSuffix(entry.Name(), ".yml")), + command: exec.Command("xterm", "-e", "qutebrowser", "--target", "window", "--restore", strings.TrimSuffix(entry.Name(), ".yml")), }) } }