Ariver
2026-05-06 c992a5929562434a8b0482ec7389cb7f70d20bb7
Apptag/ApptagApp.swift
@@ -442,15 +442,20 @@
            // Tab 1: General
            Form {
                Section {
                    Toggle("Launch at login", isOn: $launchAtLogin)
                        .onChange(of: launchAtLogin) { _, enabled in
                            if enabled {
                                try? SMAppService.mainApp.register()
                            } else {
                                try? SMAppService.mainApp.unregister()
                    HStack(spacing: 20) {
                        Toggle("Launch at login", isOn: $launchAtLogin)
                            .onChange(of: launchAtLogin) { _, enabled in
                                if enabled {
                                    try? SMAppService.mainApp.register()
                                } else {
                                    try? SMAppService.mainApp.unregister()
                                }
                            }
                        }
                        Toggle("Show in Dock", isOn: $showDockIcon)
                        Toggle("Hide app names", isOn: $hideAppNames)
                    }
                }
                .padding(.bottom, 12)
                Section {
                    LabeledContent("App list style:") {
@@ -509,14 +514,6 @@
                    Text("Icon display size. Grid columns adjust automatically.")
                        .font(.caption)
                        .foregroundStyle(.secondary)
                }
                Section {
                    Toggle("Show in Dock", isOn: $showDockIcon)
                }
                Section {
                    Toggle("Hide app names", isOn: $hideAppNames)
                }
            }
            .tabItem { Label("General", systemImage: "gearshape") }