| | |
| | | @AppStorage("tagPosition") private var tagPosition = "left" |
| | | @AppStorage("defaultGroupName") private var defaultGroupName = "Other" |
| | | @AppStorage("displayMode") private var displayMode = "flat" |
| | | @AppStorage("hideAppNames") private var hideAppNames = false |
| | | |
| | | @State private var allApps: [AppInfo] = [] |
| | | @State private var tagColors: [String: Int] = [:] |
| | |
| | | Text("Adjust the size of group-name labels in the overlay.") |
| | | .font(.caption) |
| | | .foregroundStyle(.secondary) |
| | | } header: { |
| | | Text("Appearance") |
| | | } |
| | | |
| | | Section { |
| | |
| | | Text("Icon display size. Grid columns adjust automatically.") |
| | | .font(.caption) |
| | | .foregroundStyle(.secondary) |
| | | } header: { |
| | | Text("Layout") |
| | | } |
| | | |
| | | Section { |
| | | Toggle("Hide app names", isOn: $hideAppNames) |
| | | } |
| | | } |
| | | .tabItem { Label("General", systemImage: "gearshape") } |