From 4889d526e423d51c41574e049160dbc575ad63c3 Mon Sep 17 00:00:00 2001 From: Thomas Stromberg Date: Tue, 5 Aug 2025 12:45:16 -0400 Subject: [PATCH] Less icons in the menu bar --- ui.go | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/ui.go b/ui.go index e11b265..06fb952 100644 --- a/ui.go +++ b/ui.go @@ -135,14 +135,11 @@ func (app *App) countPRs() (int, int, int, int) { } // addPRMenuItem adds a menu item for a pull request. -func (app *App) addPRMenuItem(ctx context.Context, pr PR, isOutgoing bool) { +func (app *App) addPRMenuItem(ctx context.Context, pr PR, _ bool) { title := fmt.Sprintf("%s #%d", pr.Repository, pr.Number) - if (!isOutgoing && pr.NeedsReview) || (isOutgoing && pr.IsBlocked) { - if isOutgoing { - title = fmt.Sprintf("🚀 %s", title) - } else { - title = fmt.Sprintf("🕵️ %s", title) - } + // Add bullet point for PRs where user is blocking + if pr.NeedsReview { + title = fmt.Sprintf("• %s", title) } tooltip := fmt.Sprintf("%s (%s)", pr.Title, formatAge(pr.UpdatedAt)) item := systray.AddMenuItem(title, tooltip)