[PR #14455] app: add setting for autostart on Windows #19951

Open
opened 2026-04-16 07:21:41 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/ollama/ollama/pull/14455
Author: @brpeterman
Created: 2/26/2026
Status: 🔄 Open

Base: mainHead: autostart-toggle


📝 Commits (1)

  • 0ac0153 app: add setting for autostart on Windows

📊 Changes

14 files changed (+692 additions, -80 deletions)

View changed files

📝 app/cmd/app/app.go (+7 -5)
📝 app/cmd/app/app_windows.go (+5 -53)
app/startup/startup.go (+17 -0)
app/startup/startup_darwin.go (+22 -0)
app/startup/startup_default.go (+33 -0)
app/startup/startup_windows.go (+108 -0)
app/startup/startup_windows_test.go (+164 -0)
📝 app/ui/app/codegen/gotypes.gen.ts (+10 -0)
📝 app/ui/app/src/api.ts (+26 -0)
📝 app/ui/app/src/components/Settings.tsx (+97 -2)
📝 app/ui/responses/types.go (+8 -0)
📝 app/ui/ui.go (+60 -9)
📝 app/ui/ui_test.go (+132 -0)
📝 docs/faq.mdx (+3 -11)

📄 Description

Notes

Addresses most of #14375, but is missing the Mac implementation.

Important changes:

  1. Adds a new "Start Ollama on login" option:
    image
  2. No longer registers Ollama to automatically start when it's installed for the first time.

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/ollama/ollama/pull/14455 **Author:** [@brpeterman](https://github.com/brpeterman) **Created:** 2/26/2026 **Status:** 🔄 Open **Base:** `main` ← **Head:** `autostart-toggle` --- ### 📝 Commits (1) - [`0ac0153`](https://github.com/ollama/ollama/commit/0ac01537f1cb33afa7a2ed205165e7334d6e9dba) app: add setting for autostart on Windows ### 📊 Changes **14 files changed** (+692 additions, -80 deletions) <details> <summary>View changed files</summary> 📝 `app/cmd/app/app.go` (+7 -5) 📝 `app/cmd/app/app_windows.go` (+5 -53) ➕ `app/startup/startup.go` (+17 -0) ➕ `app/startup/startup_darwin.go` (+22 -0) ➕ `app/startup/startup_default.go` (+33 -0) ➕ `app/startup/startup_windows.go` (+108 -0) ➕ `app/startup/startup_windows_test.go` (+164 -0) 📝 `app/ui/app/codegen/gotypes.gen.ts` (+10 -0) 📝 `app/ui/app/src/api.ts` (+26 -0) 📝 `app/ui/app/src/components/Settings.tsx` (+97 -2) 📝 `app/ui/responses/types.go` (+8 -0) 📝 `app/ui/ui.go` (+60 -9) 📝 `app/ui/ui_test.go` (+132 -0) 📝 `docs/faq.mdx` (+3 -11) </details> ### 📄 Description ### Notes Addresses most of #14375, but is missing the Mac implementation. Important changes: 1. Adds a new "Start Ollama on login" option: <img width="828" height="332" alt="image" src="https://github.com/user-attachments/assets/ecd62236-c490-46ac-b923-2fc19cc234f8" /> 2. No longer registers Ollama to automatically start when it's installed for the first time. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
GiteaMirror added the pull-request label 2026-04-16 07:21:41 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/ollama#19951