Skip to content

Commit 39c1ed9

Browse files
committed
Update autostart menu item icons for macOS to improve visual clarity and user experience.
1 parent afcbe29 commit 39c1ed9

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

internal/tray/tray.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -326,7 +326,7 @@ func (a *App) onReady() {
326326

327327
// --- Autostart Menu Item (macOS only) ---
328328
if runtime.GOOS == osDarwin && a.autostartManager != nil {
329-
a.autostartItem = systray.AddMenuItem("🚀 Start at Login", "Start mcpproxy automatically when you log in")
329+
a.autostartItem = systray.AddMenuItem(" Start at Login", "Start mcpproxy automatically when you log in")
330330
a.updateAutostartMenuItem()
331331
systray.AddSeparator()
332332
}
@@ -1032,10 +1032,10 @@ func (a *App) updateAutostartMenuItem() {
10321032
}
10331033

10341034
if a.autostartManager.IsEnabled() {
1035-
a.autostartItem.SetTitle(" Start at Login")
1035+
a.autostartItem.SetTitle("☑️ Start at Login")
10361036
a.autostartItem.SetTooltip("mcpproxy will start automatically when you log in (click to disable)")
10371037
} else {
1038-
a.autostartItem.SetTitle("🚀 Start at Login")
1038+
a.autostartItem.SetTitle(" Start at Login")
10391039
a.autostartItem.SetTooltip("Start mcpproxy automatically when you log in (click to enable)")
10401040
}
10411041
}

0 commit comments

Comments
 (0)