Ver código fonte

Expand default launcher grid with more Google apps

Add additional built-in web tiles so the launcher matches the default app set in the screenshot.

Made-with: Cursor
huzaifahayat12 4 meses atrás
pai
commit
bd9c557da6
1 arquivos alterados com 15 adições e 0 exclusões
  1. 15 0
      google_apps/LauncherApp.swift

+ 15 - 0
google_apps/LauncherApp.swift

@@ -58,5 +58,20 @@ extension LauncherApp {
         LauncherApp(id: UUID(uuidString: "F0000000-0000-0000-0000-000000000016")!, name: "Google Books", assetIconName: "icon_google_books", fallbackSymbolName: "book.fill", description: "Browse and read books.", isCreateNew: false, webURL: URL(string: "https://books.google.com")),
         LauncherApp(id: UUID(uuidString: "F0000000-0000-0000-0000-000000000017")!, name: "Google Travel", assetIconName: "icon_google_travel", fallbackSymbolName: "airplane", description: "Plan and organize trips.", isCreateNew: false, webURL: URL(string: "https://travel.google.com")),
         LauncherApp(id: UUID(uuidString: "F0000000-0000-0000-0000-000000000018")!, name: "Google Meet", assetIconName: "icon_google_meet", fallbackSymbolName: "video.fill", description: "Start and join video meetings.", isCreateNew: false, webURL: URL(string: "https://meet.google.com")),
+        LauncherApp(id: UUID(uuidString: "F0000000-0000-0000-0000-000000000019")!, name: "Google Contacts", assetIconName: "icon_google_contacts", fallbackSymbolName: "person.crop.circle.fill", description: "Manage your contacts.", isCreateNew: false, webURL: URL(string: "https://contacts.google.com")),
+        LauncherApp(id: UUID(uuidString: "F0000000-0000-0000-0000-00000000001A")!, name: "Google Blogger", assetIconName: "icon_google_blogger", fallbackSymbolName: "text.book.closed.fill", description: "Publish and read blogs.", isCreateNew: false, webURL: URL(string: "https://www.blogger.com")),
+        LauncherApp(id: UUID(uuidString: "F0000000-0000-0000-0000-00000000001B")!, name: "Google Play", assetIconName: "icon_google_play", fallbackSymbolName: "play.circle.fill", description: "Apps, games, movies, and books.", isCreateNew: false, webURL: URL(string: "https://play.google.com")),
+        LauncherApp(id: UUID(uuidString: "F0000000-0000-0000-0000-00000000001C")!, name: "Google News", assetIconName: "icon_google_news", fallbackSymbolName: "newspaper.fill", description: "Headlines tailored to you.", isCreateNew: false, webURL: URL(string: "https://news.google.com")),
+        LauncherApp(id: UUID(uuidString: "F0000000-0000-0000-0000-00000000001D")!, name: "Google Chat", assetIconName: "icon_google_chat", fallbackSymbolName: "bubble.left.and.bubble.right.fill", description: "Team messaging and spaces.", isCreateNew: false, webURL: URL(string: "https://chat.google.com")),
+        LauncherApp(id: UUID(uuidString: "F0000000-0000-0000-0000-00000000001E")!, name: "Google Finance", assetIconName: "icon_google_finance", fallbackSymbolName: "chart.line.uptrend.xyaxis", description: "Markets, news, and portfolios.", isCreateNew: false, webURL: URL(string: "https://www.google.com/finance")),
+        LauncherApp(id: UUID(uuidString: "F0000000-0000-0000-0000-00000000001F")!, name: "Google Jamboard", assetIconName: "icon_google_jamboard", fallbackSymbolName: "paintbrush.fill", description: "Collaborative whiteboards.", isCreateNew: false, webURL: URL(string: "https://jamboard.google.com")),
+        LauncherApp(id: UUID(uuidString: "F0000000-0000-0000-0000-000000000020")!, name: "Google Classroom", assetIconName: "icon_google_classroom", fallbackSymbolName: "graduationcap.fill", description: "Teaching and learning hub.", isCreateNew: false, webURL: URL(string: "https://classroom.google.com")),
+        LauncherApp(id: UUID(uuidString: "F0000000-0000-0000-0000-000000000021")!, name: "Google Arts & Culture", assetIconName: "icon_google_arts_culture", fallbackSymbolName: "building.columns.fill", description: "Museums, art, and history.", isCreateNew: false, webURL: URL(string: "https://artsandculture.google.com")),
+        LauncherApp(id: UUID(uuidString: "F0000000-0000-0000-0000-000000000022")!, name: "Google Voice", assetIconName: "icon_google_voice", fallbackSymbolName: "phone.fill", description: "Calls, voicemail, and SMS.", isCreateNew: false, webURL: URL(string: "https://voice.google.com")),
+        LauncherApp(id: UUID(uuidString: "F0000000-0000-0000-0000-000000000023")!, name: "Chrome Web Store", assetIconName: "icon_chrome_web_store", fallbackSymbolName: "bag.fill", description: "Extensions and themes for Chrome.", isCreateNew: false, webURL: URL(string: "https://chrome.google.com/webstore")),
+        LauncherApp(id: UUID(uuidString: "F0000000-0000-0000-0000-000000000024")!, name: "Google Fi Wireless", assetIconName: "icon_google_fi", fallbackSymbolName: "antenna.radiowaves.left.and.right", description: "Phone plan and account.", isCreateNew: false, webURL: URL(string: "https://fi.google.com")),
+        LauncherApp(id: UUID(uuidString: "F0000000-0000-0000-0000-000000000025")!, name: "Google Ads", assetIconName: "icon_google_ads", fallbackSymbolName: "megaphone.fill", description: "Advertising campaigns.", isCreateNew: false, webURL: URL(string: "https://ads.google.com")),
+        LauncherApp(id: UUID(uuidString: "F0000000-0000-0000-0000-000000000026")!, name: "Chrome Remote Desktop", assetIconName: "icon_chrome_remote_desktop", fallbackSymbolName: "desktopcomputer", description: "Access computers remotely.", isCreateNew: false, webURL: URL(string: "https://remotedesktop.google.com")),
+        LauncherApp(id: UUID(uuidString: "F0000000-0000-0000-0000-000000000027")!, name: "Gemini", assetIconName: "icon_gemini", fallbackSymbolName: "sparkles", description: "Google AI assistant.", isCreateNew: false, webURL: URL(string: "https://gemini.google.com")),
     ]
 }