├── .eslintignore ├── .github ├── FUNDING.yml └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── .prettierignore ├── LICENSE ├── README.md ├── electron-builder-portable.config.cjs ├── electron-builder.config.cjs ├── electron.vite.config.ts ├── eslint.config.js ├── extension ├── .gitignore ├── HeroUiConfig.ts ├── README.md ├── electron.vite.config.ts ├── lynxExtension.json ├── lynxExtension.schema.json ├── package.json └── src │ ├── cross │ └── CrossUtils.ts │ ├── main │ ├── Methods │ │ └── IpcChannels.ts │ └── lynxExtension.ts │ └── renderer │ ├── Components │ ├── Cards_AddMenu.tsx │ ├── Components.tsx │ └── Settings.tsx │ ├── Extension.tsx │ ├── index.css │ ├── index.html │ └── reducer.ts ├── module ├── .gitignore ├── README.md ├── lynxModule.json ├── lynxModule.schema.json ├── package.json ├── rollup.config.mjs ├── src │ ├── Constants.ts │ ├── WebUI │ │ ├── ComfyUI (comfyanonymous) │ │ │ ├── Arguments.ts │ │ │ ├── MainMethods.ts │ │ │ └── RendererMethods.ts │ │ └── OpenWebUI │ │ │ ├── Arguments.ts │ │ │ ├── MainMethods.ts │ │ │ └── RendererMethods.ts │ ├── main.ts │ ├── renderer.ts │ └── utils │ │ ├── CrossUtils.ts │ │ ├── MainUtils.ts │ │ └── RendererUtils.ts └── tsconfig.json ├── notifications.json ├── notifications.schema.json ├── package.json ├── prettier.config.ts ├── readme └── lynxhub_screenshot.png ├── releases_log_v2.json ├── releases_log_v2.schema.json ├── removeDotExtensions.js ├── resources ├── 16x16.png ├── 256x256.png ├── icon-darwin.png ├── icon.ico └── icon.png ├── src ├── cross │ ├── AccentColorGenerator.ts │ ├── CrossConstants.ts │ ├── CrossTypes.ts │ ├── CrossUtils.ts │ ├── DownloadManagerTypes.ts │ ├── GetArgumentsData.ts │ ├── GitTypes.ts │ ├── HotkeyConstants.ts │ ├── IpcChannelAndTypes.ts │ ├── ScreenShareConsts.ts │ ├── ScreenShareTypes.ts │ ├── StorageTypes.ts │ └── plugin │ │ ├── CrossPluginUtils.ts │ │ ├── ExtensionTypes_Events.ts │ │ ├── ExtensionTypes_Renderer.ts │ │ ├── ExtensionTypes_Renderer_Api.ts │ │ ├── ModuleTypes.ts │ │ └── PluginTypes.ts ├── main │ ├── Managements │ │ ├── AppDataManager.ts │ │ ├── AppUpdater.ts │ │ ├── Breadcrumbs.ts │ │ ├── BrowserDownloadManager.ts │ │ ├── BrowserManager.ts │ │ ├── ContextMenuManager.ts │ │ ├── DataValidator.ts │ │ ├── DialogManager.ts │ │ ├── DiscordRpcManager.ts │ │ ├── ElectronAppManager.ts │ │ ├── Git │ │ │ ├── GitHelper.ts │ │ │ └── GitManager.ts │ │ ├── HotkeysManager.ts │ │ ├── Ipc │ │ │ ├── IpcHandler.ts │ │ │ ├── IpcMainSender.ts │ │ │ └── Methods │ │ │ │ ├── IpcMethods-CardExtensions.ts │ │ │ │ ├── IpcMethods-Downloader.ts │ │ │ │ ├── IpcMethods-Initializer.ts │ │ │ │ ├── IpcMethods-Platform.ts │ │ │ │ ├── IpcMethods-Pty.ts │ │ │ │ ├── IpcMethods-Repository.ts │ │ │ │ └── IpcMethods.ts │ │ ├── Plugin │ │ │ ├── Extensions │ │ │ │ ├── ExtensionApi.ts │ │ │ │ ├── ExtensionManager.ts │ │ │ │ ├── ExtensionTypes_Main.ts │ │ │ │ └── ExtensionUtils.ts │ │ │ ├── Modules │ │ │ │ └── ModuleManager.ts │ │ │ ├── PluginConstants.ts │ │ │ ├── PluginManager.ts │ │ │ ├── PluginMigrate.ts │ │ │ ├── PluginSentry.ts │ │ │ └── PluginUtils.ts │ │ ├── PtyManager.ts │ │ ├── ShareScreenManager.ts │ │ ├── StaticsManager.ts │ │ ├── Storage │ │ │ ├── BaseStorage.ts │ │ │ └── StorageManager.ts │ │ ├── ToastWindowManager.ts │ │ └── TrayManager.ts │ ├── Utilities │ │ ├── CalculateFolderSize │ │ │ ├── CalculateFolderSize.ts │ │ │ └── DownloadDU.ts │ │ └── Utils.ts │ └── index.ts ├── preload │ ├── dialog.js │ ├── index.js │ ├── only_ipc.js │ ├── utils.js │ └── webview.js └── renderer │ ├── Breadcrumbs.tsx │ ├── HeroUiConfig.ts │ ├── SentryInit.ts │ ├── assets │ ├── fonts.css │ └── fonts │ │ ├── JetBrainsMono │ │ └── JetBrainsMono.ttf │ │ └── Nunito │ │ ├── Nunito-Italic-VariableFont_wght.ttf │ │ └── Nunito-VariableFont_wght.ttf │ ├── context_menu.html │ ├── context_menu │ ├── Components │ │ ├── ContextHooks.tsx │ │ ├── OtherMenu.tsx │ │ ├── RightClickMenu.tsx │ │ ├── SvgIcons.tsx │ │ └── TerminateMenu.tsx │ ├── ContextMenu.tsx │ ├── UIProviders.tsx │ └── main.tsx │ ├── cross_styles.css │ ├── dialog.html │ ├── dialog │ ├── Dialog.tsx │ └── main.tsx │ ├── downloads_menu.html │ ├── downloads_menu │ ├── DownloadItem.tsx │ ├── DownloadMenu.tsx │ ├── UtilMethods.tsx │ └── main.tsx │ ├── federation.d.ts │ ├── global.d.ts │ ├── index.html │ ├── loading.html │ ├── loading │ ├── Backgrounds │ │ ├── LiquidChromeBG.tsx │ │ ├── RippleBG.tsx │ │ └── ThreadsBG.tsx │ ├── Loadings │ │ ├── AppName.tsx │ │ ├── Container.tsx │ │ ├── LiquidChromeLoading.tsx │ │ ├── RippleLoading.tsx │ │ ├── SimpleLoading.tsx │ │ └── ThreadsLoading.tsx │ └── main.tsx │ ├── public │ └── LynxHub.png │ ├── share_screen.html │ ├── share_screen │ ├── ScreenShare.tsx │ ├── SvgIcons.tsx │ └── main.tsx │ ├── src │ ├── App │ │ ├── App.tsx │ │ ├── AppEvents │ │ │ ├── AppEvents.ts │ │ │ ├── AppEvents_Hooks.tsx │ │ │ └── AppStates_Hooks.ts │ │ ├── Components │ │ │ ├── Background.tsx │ │ │ ├── Browser_Terminal │ │ │ │ ├── Browser │ │ │ │ │ ├── Browser.tsx │ │ │ │ │ ├── Browser_ActionButtons.tsx │ │ │ │ │ ├── Browser_AddressBar.tsx │ │ │ │ │ ├── Browser_Error.tsx │ │ │ │ │ ├── Browser_Search.tsx │ │ │ │ │ ├── Browser_TopBar.tsx │ │ │ │ │ ├── Browser_Zoom.tsx │ │ │ │ │ ├── EmptyPage.tsx │ │ │ │ │ └── EmptyPage_Item.tsx │ │ │ │ ├── RunningCardView.tsx │ │ │ │ ├── Terminal │ │ │ │ │ ├── Terminal.tsx │ │ │ │ │ ├── TerminalColorHandler.ts │ │ │ │ │ ├── Terminal_Timer.tsx │ │ │ │ │ ├── Terminal_TopBar.tsx │ │ │ │ │ └── Terminal_Utils.ts │ │ │ │ └── TopBar │ │ │ │ │ ├── DownloadManager.tsx │ │ │ │ │ ├── SharedTopBar.tsx │ │ │ │ │ ├── Switch.tsx │ │ │ │ │ ├── Terminate_AI.tsx │ │ │ │ │ └── TopBar.tsx │ │ │ ├── Cards │ │ │ │ ├── Card │ │ │ │ │ ├── Card.tsx │ │ │ │ │ ├── Footer.tsx │ │ │ │ │ ├── Menu │ │ │ │ │ │ ├── InstalledMenu.tsx │ │ │ │ │ │ ├── Items │ │ │ │ │ │ │ ├── About.tsx │ │ │ │ │ │ │ ├── DangerZone.tsx │ │ │ │ │ │ │ ├── Options.tsx │ │ │ │ │ │ │ └── Update.tsx │ │ │ │ │ │ └── UninstalledMenu.tsx │ │ │ │ │ ├── PulsingLine.tsx │ │ │ │ │ ├── RenderCardList.tsx │ │ │ │ │ └── Wrapper.tsx │ │ │ │ ├── CardStore.ts │ │ │ │ ├── Cards.tsx │ │ │ │ ├── CardsByCategory.tsx │ │ │ │ └── NavigatePluginsPage.tsx │ │ │ ├── Initializer │ │ │ │ ├── Initializer.tsx │ │ │ │ ├── OnboardingWizard.tsx │ │ │ │ ├── components │ │ │ │ │ ├── CheckRow.tsx │ │ │ │ │ ├── PluginSelector.tsx │ │ │ │ │ └── RequirementsChecker.tsx │ │ │ │ ├── hooks │ │ │ │ │ └── useRequirementChecks.ts │ │ │ │ ├── steps │ │ │ │ │ ├── StepComplete.tsx │ │ │ │ │ ├── StepSystemCheck.tsx │ │ │ │ │ ├── StepUpdate.tsx │ │ │ │ │ └── StepWelcome.tsx │ │ │ │ └── types.ts │ │ │ ├── MainContents │ │ │ │ ├── AppPages.tsx │ │ │ │ ├── MainContents.tsx │ │ │ │ └── StatusBar.tsx │ │ │ ├── Modals │ │ │ │ ├── CardExtensions │ │ │ │ │ ├── Available │ │ │ │ │ │ ├── Available.tsx │ │ │ │ │ │ └── RenderItem.tsx │ │ │ │ │ ├── CardExtensions.tsx │ │ │ │ │ ├── Clone.tsx │ │ │ │ │ ├── Constants.tsx │ │ │ │ │ ├── Installed.tsx │ │ │ │ │ └── Types.ts │ │ │ │ ├── CardGitManager │ │ │ │ │ ├── Branches.tsx │ │ │ │ │ ├── CardGitManager_Modal.tsx │ │ │ │ │ ├── CommitInfo.tsx │ │ │ │ │ └── Reset_Shallow.tsx │ │ │ │ ├── CardInfo │ │ │ │ │ ├── CardInfo-Description.tsx │ │ │ │ │ ├── CardInfo-Modal.tsx │ │ │ │ │ └── UseCardInfoApi.tsx │ │ │ │ ├── CardReadme_Modal.tsx │ │ │ │ ├── CustomNotification │ │ │ │ │ └── CustomNotification.tsx │ │ │ │ ├── InstallUI │ │ │ │ │ ├── Footer-Terminal.tsx │ │ │ │ │ ├── Install-Body.tsx │ │ │ │ │ ├── Install-Footer.tsx │ │ │ │ │ ├── Install-Header.tsx │ │ │ │ │ ├── Install-Hooks.tsx │ │ │ │ │ ├── Install-Modal.tsx │ │ │ │ │ ├── Utils │ │ │ │ │ │ ├── CloneOptions.tsx │ │ │ │ │ │ ├── CloneRepo.tsx │ │ │ │ │ │ ├── InstallExtensions.tsx │ │ │ │ │ │ ├── InstallStepper.ts │ │ │ │ │ │ ├── LocateWarning.tsx │ │ │ │ │ │ ├── TerminalStep.tsx │ │ │ │ │ │ └── UserInputs.tsx │ │ │ │ │ └── types.d.ts │ │ │ │ ├── LaunchConfig │ │ │ │ │ ├── Arguments │ │ │ │ │ │ ├── AddArguments │ │ │ │ │ │ │ ├── AddArguments.tsx │ │ │ │ │ │ │ └── ArgumentCategory.tsx │ │ │ │ │ │ ├── CardArguments.tsx │ │ │ │ │ │ ├── ManageArguments │ │ │ │ │ │ │ ├── Items │ │ │ │ │ │ │ │ ├── Argument-Item-Base.tsx │ │ │ │ │ │ │ │ ├── AutoCompletePath.tsx │ │ │ │ │ │ │ │ ├── CheckBoxArg-Item.tsx │ │ │ │ │ │ │ │ ├── DirectoryArg-Item.tsx │ │ │ │ │ │ │ │ ├── DropdownArg-Item.tsx │ │ │ │ │ │ │ │ ├── FileArg-Item.tsx │ │ │ │ │ │ │ │ ├── InputArg-Item.tsx │ │ │ │ │ │ │ │ └── PathArgItem.tsx │ │ │ │ │ │ │ ├── ManageArguments-Item.tsx │ │ │ │ │ │ │ ├── ManageArguments.tsx │ │ │ │ │ │ │ └── PresetsManager.tsx │ │ │ │ │ │ └── PreviewArguments.tsx │ │ │ │ │ ├── CustomRun │ │ │ │ │ │ ├── CustomRun.tsx │ │ │ │ │ │ ├── CustomRunBehavior.tsx │ │ │ │ │ │ ├── CustomRunCommands.tsx │ │ │ │ │ │ └── UrlCatch.tsx │ │ │ │ │ ├── LaunchConfig-Section.tsx │ │ │ │ │ ├── LaunchConfig.tsx │ │ │ │ │ ├── PreLaunch │ │ │ │ │ │ ├── CardPreLaunch.tsx │ │ │ │ │ │ ├── PreOpenPath │ │ │ │ │ │ │ ├── PreOpenPath-Item.tsx │ │ │ │ │ │ │ └── PreOpenPath.tsx │ │ │ │ │ │ └── PreTerminalCommands │ │ │ │ │ │ │ └── PreTerminalCommands.tsx │ │ │ │ │ └── TerminalCommand-Item.tsx │ │ │ │ ├── Modals.tsx │ │ │ │ ├── UnassignCard │ │ │ │ │ └── UnassignCard.tsx │ │ │ │ ├── UninstallCard │ │ │ │ │ └── UninstallCard.tsx │ │ │ │ ├── UpdateApp │ │ │ │ │ ├── Downloaded.tsx │ │ │ │ │ ├── Downloading.tsx │ │ │ │ │ ├── Info.tsx │ │ │ │ │ └── UpdateApp.tsx │ │ │ │ ├── UpdatingCard │ │ │ │ │ ├── UpdateDetails.tsx │ │ │ │ │ └── UpdatingNotification.tsx │ │ │ │ └── Warning │ │ │ │ │ ├── WarningContent.tsx │ │ │ │ │ └── WarningModal.tsx │ │ │ ├── NavBar │ │ │ │ ├── NavBar.tsx │ │ │ │ ├── NavButton.tsx │ │ │ │ ├── NavButtons.tsx │ │ │ │ ├── NavTooltip.tsx │ │ │ │ └── NavigationDock.tsx │ │ │ ├── Pages │ │ │ │ ├── CardContainer.tsx │ │ │ │ ├── ContentPages │ │ │ │ │ ├── AgentsPage.tsx │ │ │ │ │ ├── AudioGenerationPage.tsx │ │ │ │ │ ├── GamesPage.tsx │ │ │ │ │ ├── Home │ │ │ │ │ │ ├── HomeCategory.tsx │ │ │ │ │ │ ├── HomeFilter.tsx │ │ │ │ │ │ ├── HomePage.tsx │ │ │ │ │ │ ├── HomeSearchBox.tsx │ │ │ │ │ │ ├── Home_TopBar.tsx │ │ │ │ │ │ └── Notification │ │ │ │ │ │ │ ├── Home_Notification.tsx │ │ │ │ │ │ │ └── StaticNotifications.tsx │ │ │ │ │ ├── ImageGenerationPage.tsx │ │ │ │ │ ├── OthersPage.tsx │ │ │ │ │ ├── TextGenerationPage.tsx │ │ │ │ │ └── ToolsPage.tsx │ │ │ │ ├── Page.tsx │ │ │ │ └── SettingsPages │ │ │ │ │ ├── Dashboard │ │ │ │ │ ├── Content │ │ │ │ │ │ ├── Dashboard-About.tsx │ │ │ │ │ │ ├── Dashboard-Credits.tsx │ │ │ │ │ │ ├── Dashboard-ReportIssue.tsx │ │ │ │ │ │ ├── Dashboard-Update.tsx │ │ │ │ │ │ └── Profile │ │ │ │ │ │ │ ├── Dashboard-Profile.tsx │ │ │ │ │ │ │ ├── Profile_Google.tsx │ │ │ │ │ │ │ └── Profile_Patreon.tsx │ │ │ │ │ ├── DashboardContainer.tsx │ │ │ │ │ ├── DashboardPage-Contents.tsx │ │ │ │ │ ├── DashboardPage-Nav.tsx │ │ │ │ │ └── DashboardPage.tsx │ │ │ │ │ ├── Plugins │ │ │ │ │ ├── Elements.tsx │ │ │ │ │ ├── List │ │ │ │ │ │ ├── List.tsx │ │ │ │ │ │ ├── List_Item.tsx │ │ │ │ │ │ └── List_Utils.tsx │ │ │ │ │ ├── Page.tsx │ │ │ │ │ └── Preview │ │ │ │ │ │ ├── ActionButtons.tsx │ │ │ │ │ │ ├── Body.tsx │ │ │ │ │ │ ├── ChangelogList.tsx │ │ │ │ │ │ ├── Header.tsx │ │ │ │ │ │ ├── Preview.tsx │ │ │ │ │ │ └── Versions.tsx │ │ │ │ │ ├── SecurityWarning.tsx │ │ │ │ │ └── Settings │ │ │ │ │ ├── Content │ │ │ │ │ ├── Browser │ │ │ │ │ │ ├── SettingsBrowser.tsx │ │ │ │ │ │ ├── SettingsBrowser_ClearData.tsx │ │ │ │ │ │ ├── SettingsBrowser_Links.tsx │ │ │ │ │ │ └── SettingsBrowser_UserAgent.tsx │ │ │ │ │ ├── Card │ │ │ │ │ │ ├── CheckUpdateInterval.tsx │ │ │ │ │ │ └── Settings-Card.tsx │ │ │ │ │ ├── General │ │ │ │ │ │ ├── Settings-General.tsx │ │ │ │ │ │ ├── SettingsGeneral-CollectErrors.tsx │ │ │ │ │ │ ├── SettingsGeneral-Confirm.tsx │ │ │ │ │ │ ├── SettingsGeneral-HWAcc.tsx │ │ │ │ │ │ ├── SettingsGeneral-Taskbar.tsx │ │ │ │ │ │ ├── SettingsGeneral-Theme.tsx │ │ │ │ │ │ ├── SettingsGeneral-TitleName.tsx │ │ │ │ │ │ ├── SettingsGeneral-Tooltip.tsx │ │ │ │ │ │ └── ThemeSwitchAnimationHook.ts │ │ │ │ │ ├── HotkeySettings.tsx │ │ │ │ │ ├── Settings-Clear.tsx │ │ │ │ │ ├── Settings-Data.tsx │ │ │ │ │ ├── Settings-Discord.tsx │ │ │ │ │ ├── Startup │ │ │ │ │ │ ├── Settings-Startup.tsx │ │ │ │ │ │ ├── SettingsStartup-DisableLoadingAnim.tsx │ │ │ │ │ │ ├── SettingsStartup-LastSize.tsx │ │ │ │ │ │ ├── SettingsStartup-StartMaximized.tsx │ │ │ │ │ │ ├── SettingsStartup-StartMinimized.tsx │ │ │ │ │ │ ├── SettingsStartup-StartPage.tsx │ │ │ │ │ │ └── SettingsStartup-System.tsx │ │ │ │ │ └── Terminal │ │ │ │ │ │ ├── Settings-Terminal.tsx │ │ │ │ │ │ ├── SettingsTerminal-BlinkCursor.tsx │ │ │ │ │ │ ├── SettingsTerminal-CloseOnExit.tsx │ │ │ │ │ │ ├── SettingsTerminal-Conpty.tsx │ │ │ │ │ │ ├── SettingsTerminal-CursorInactiveStyle.tsx │ │ │ │ │ │ ├── SettingsTerminal-CursorStyle.tsx │ │ │ │ │ │ ├── SettingsTerminal-FontSize.tsx │ │ │ │ │ │ ├── SettingsTerminal-OutputColor.tsx │ │ │ │ │ │ ├── SettingsTerminal-Reset.tsx │ │ │ │ │ │ ├── SettingsTerminal-ResizeDelay.tsx │ │ │ │ │ │ └── SettingsTerminal-ScrollBack.tsx │ │ │ │ │ ├── SettingsContainer.tsx │ │ │ │ │ ├── SettingsPage-ContentSection.tsx │ │ │ │ │ ├── SettingsPage-Contents.tsx │ │ │ │ │ ├── SettingsPage-Nav.tsx │ │ │ │ │ └── SettingsPage.tsx │ │ │ ├── Reusable │ │ │ │ ├── CopyClipboard.tsx │ │ │ │ ├── LynxScroll.tsx │ │ │ │ ├── LynxSwitch.tsx │ │ │ │ ├── LynxTooltip.tsx │ │ │ │ ├── MarkdownViewer.tsx │ │ │ │ ├── OpenDialog.tsx │ │ │ │ ├── ShinyText.tsx │ │ │ │ └── SmallButton.tsx │ │ │ ├── Tabs │ │ │ │ ├── NewTab.tsx │ │ │ │ ├── TabContainer.tsx │ │ │ │ ├── TabItem.tsx │ │ │ │ ├── TabItem_Icon.tsx │ │ │ │ ├── TabTitle.tsx │ │ │ │ └── Tab_Utils.tsx │ │ │ └── TitleBar │ │ │ │ ├── TitleBar.tsx │ │ │ │ ├── WindowButtons.tsx │ │ │ │ └── WindowButtons_Close.tsx │ │ ├── ExtensionHooks.tsx │ │ ├── Extensions │ │ │ ├── ExtensionLoader.ts │ │ │ ├── Extension_Utils.tsx │ │ │ └── Vite-Federation.ts │ │ ├── MainHooks.tsx │ │ ├── Modules │ │ │ └── ModuleLoader.ts │ │ ├── PluginSentry.ts │ │ ├── Redux │ │ │ ├── Reducer │ │ │ │ ├── AppReducer.ts │ │ │ │ ├── CardsReducer.ts │ │ │ │ ├── HotkeysReducer.ts │ │ │ │ ├── ModalsReducer.ts │ │ │ │ ├── PluginsReducer.ts │ │ │ │ ├── SettingsReducer.ts │ │ │ │ ├── TabsReducer.ts │ │ │ │ ├── TerminalReducer.ts │ │ │ │ └── UserReducer.ts │ │ │ └── Store.ts │ │ ├── RendererIpc.ts │ │ ├── UIProviders.tsx │ │ └── Utils │ │ │ ├── Constants.tsx │ │ │ ├── CrossStyle.tsx │ │ │ ├── LocalStorage.tsx │ │ │ ├── RegisterHotkeys.tsx │ │ │ ├── SetHtmlAttributes.tsx │ │ │ ├── Types.ts │ │ │ ├── UtilFunctions.ts │ │ │ └── UtilHooks.tsx │ ├── ErrorComponent.tsx │ ├── assets │ │ └── icons │ │ │ ├── SvgIcons │ │ │ ├── SvgIcons.tsx │ │ │ └── SvgIconsColor.tsx │ │ │ └── SvgIconsContainer.tsx │ ├── index.css │ └── main.tsx │ ├── toast__window │ ├── ToastContent.tsx │ ├── main.tsx │ └── types.d.ts │ └── toast_window.html ├── tsconfig.json ├── tsconfig.node.json └── tsconfig.web.json /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | out 3 | .gitignore 4 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/.prettierignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/README.md -------------------------------------------------------------------------------- /electron-builder-portable.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/electron-builder-portable.config.cjs -------------------------------------------------------------------------------- /electron-builder.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/electron-builder.config.cjs -------------------------------------------------------------------------------- /electron.vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/electron.vite.config.ts -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/eslint.config.js -------------------------------------------------------------------------------- /extension/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | package-lock.json -------------------------------------------------------------------------------- /extension/HeroUiConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/extension/HeroUiConfig.ts -------------------------------------------------------------------------------- /extension/README.md: -------------------------------------------------------------------------------- 1 | # Extension entry -------------------------------------------------------------------------------- /extension/electron.vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/extension/electron.vite.config.ts -------------------------------------------------------------------------------- /extension/lynxExtension.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/extension/lynxExtension.json -------------------------------------------------------------------------------- /extension/lynxExtension.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/extension/lynxExtension.schema.json -------------------------------------------------------------------------------- /extension/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/extension/package.json -------------------------------------------------------------------------------- /extension/src/cross/CrossUtils.ts: -------------------------------------------------------------------------------- 1 | // Shared between renderer and main process 2 | -------------------------------------------------------------------------------- /extension/src/main/Methods/IpcChannels.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/extension/src/main/Methods/IpcChannels.ts -------------------------------------------------------------------------------- /extension/src/main/lynxExtension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/extension/src/main/lynxExtension.ts -------------------------------------------------------------------------------- /extension/src/renderer/Components/Cards_AddMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/extension/src/renderer/Components/Cards_AddMenu.tsx -------------------------------------------------------------------------------- /extension/src/renderer/Components/Components.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/extension/src/renderer/Components/Components.tsx -------------------------------------------------------------------------------- /extension/src/renderer/Components/Settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/extension/src/renderer/Components/Settings.tsx -------------------------------------------------------------------------------- /extension/src/renderer/Extension.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/extension/src/renderer/Extension.tsx -------------------------------------------------------------------------------- /extension/src/renderer/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/extension/src/renderer/index.css -------------------------------------------------------------------------------- /extension/src/renderer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/extension/src/renderer/index.html -------------------------------------------------------------------------------- /extension/src/renderer/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/extension/src/renderer/reducer.ts -------------------------------------------------------------------------------- /module/.gitignore: -------------------------------------------------------------------------------- 1 | package-lock.json -------------------------------------------------------------------------------- /module/README.md: -------------------------------------------------------------------------------- 1 | # Module entry -------------------------------------------------------------------------------- /module/lynxModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/module/lynxModule.json -------------------------------------------------------------------------------- /module/lynxModule.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/module/lynxModule.schema.json -------------------------------------------------------------------------------- /module/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/module/package.json -------------------------------------------------------------------------------- /module/rollup.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/module/rollup.config.mjs -------------------------------------------------------------------------------- /module/src/Constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/module/src/Constants.ts -------------------------------------------------------------------------------- /module/src/WebUI/ComfyUI (comfyanonymous)/Arguments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/module/src/WebUI/ComfyUI (comfyanonymous)/Arguments.ts -------------------------------------------------------------------------------- /module/src/WebUI/ComfyUI (comfyanonymous)/MainMethods.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/module/src/WebUI/ComfyUI (comfyanonymous)/MainMethods.ts -------------------------------------------------------------------------------- /module/src/WebUI/ComfyUI (comfyanonymous)/RendererMethods.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/module/src/WebUI/ComfyUI (comfyanonymous)/RendererMethods.ts -------------------------------------------------------------------------------- /module/src/WebUI/OpenWebUI/Arguments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/module/src/WebUI/OpenWebUI/Arguments.ts -------------------------------------------------------------------------------- /module/src/WebUI/OpenWebUI/MainMethods.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/module/src/WebUI/OpenWebUI/MainMethods.ts -------------------------------------------------------------------------------- /module/src/WebUI/OpenWebUI/RendererMethods.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/module/src/WebUI/OpenWebUI/RendererMethods.ts -------------------------------------------------------------------------------- /module/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/module/src/main.ts -------------------------------------------------------------------------------- /module/src/renderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/module/src/renderer.ts -------------------------------------------------------------------------------- /module/src/utils/CrossUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/module/src/utils/CrossUtils.ts -------------------------------------------------------------------------------- /module/src/utils/MainUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/module/src/utils/MainUtils.ts -------------------------------------------------------------------------------- /module/src/utils/RendererUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/module/src/utils/RendererUtils.ts -------------------------------------------------------------------------------- /module/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/module/tsconfig.json -------------------------------------------------------------------------------- /notifications.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/notifications.json -------------------------------------------------------------------------------- /notifications.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/notifications.schema.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/package.json -------------------------------------------------------------------------------- /prettier.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/prettier.config.ts -------------------------------------------------------------------------------- /readme/lynxhub_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/readme/lynxhub_screenshot.png -------------------------------------------------------------------------------- /releases_log_v2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/releases_log_v2.json -------------------------------------------------------------------------------- /releases_log_v2.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/releases_log_v2.schema.json -------------------------------------------------------------------------------- /removeDotExtensions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/removeDotExtensions.js -------------------------------------------------------------------------------- /resources/16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/resources/16x16.png -------------------------------------------------------------------------------- /resources/256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/resources/256x256.png -------------------------------------------------------------------------------- /resources/icon-darwin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/resources/icon-darwin.png -------------------------------------------------------------------------------- /resources/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/resources/icon.ico -------------------------------------------------------------------------------- /resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/resources/icon.png -------------------------------------------------------------------------------- /src/cross/AccentColorGenerator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/cross/AccentColorGenerator.ts -------------------------------------------------------------------------------- /src/cross/CrossConstants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/cross/CrossConstants.ts -------------------------------------------------------------------------------- /src/cross/CrossTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/cross/CrossTypes.ts -------------------------------------------------------------------------------- /src/cross/CrossUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/cross/CrossUtils.ts -------------------------------------------------------------------------------- /src/cross/DownloadManagerTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/cross/DownloadManagerTypes.ts -------------------------------------------------------------------------------- /src/cross/GetArgumentsData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/cross/GetArgumentsData.ts -------------------------------------------------------------------------------- /src/cross/GitTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/cross/GitTypes.ts -------------------------------------------------------------------------------- /src/cross/HotkeyConstants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/cross/HotkeyConstants.ts -------------------------------------------------------------------------------- /src/cross/IpcChannelAndTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/cross/IpcChannelAndTypes.ts -------------------------------------------------------------------------------- /src/cross/ScreenShareConsts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/cross/ScreenShareConsts.ts -------------------------------------------------------------------------------- /src/cross/ScreenShareTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/cross/ScreenShareTypes.ts -------------------------------------------------------------------------------- /src/cross/StorageTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/cross/StorageTypes.ts -------------------------------------------------------------------------------- /src/cross/plugin/CrossPluginUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/cross/plugin/CrossPluginUtils.ts -------------------------------------------------------------------------------- /src/cross/plugin/ExtensionTypes_Events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/cross/plugin/ExtensionTypes_Events.ts -------------------------------------------------------------------------------- /src/cross/plugin/ExtensionTypes_Renderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/cross/plugin/ExtensionTypes_Renderer.ts -------------------------------------------------------------------------------- /src/cross/plugin/ExtensionTypes_Renderer_Api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/cross/plugin/ExtensionTypes_Renderer_Api.ts -------------------------------------------------------------------------------- /src/cross/plugin/ModuleTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/cross/plugin/ModuleTypes.ts -------------------------------------------------------------------------------- /src/cross/plugin/PluginTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/cross/plugin/PluginTypes.ts -------------------------------------------------------------------------------- /src/main/Managements/AppDataManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/main/Managements/AppDataManager.ts -------------------------------------------------------------------------------- /src/main/Managements/AppUpdater.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/main/Managements/AppUpdater.ts -------------------------------------------------------------------------------- /src/main/Managements/Breadcrumbs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/main/Managements/Breadcrumbs.ts -------------------------------------------------------------------------------- /src/main/Managements/BrowserDownloadManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/main/Managements/BrowserDownloadManager.ts -------------------------------------------------------------------------------- /src/main/Managements/BrowserManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/main/Managements/BrowserManager.ts -------------------------------------------------------------------------------- /src/main/Managements/ContextMenuManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/main/Managements/ContextMenuManager.ts -------------------------------------------------------------------------------- /src/main/Managements/DataValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/main/Managements/DataValidator.ts -------------------------------------------------------------------------------- /src/main/Managements/DialogManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/main/Managements/DialogManager.ts -------------------------------------------------------------------------------- /src/main/Managements/DiscordRpcManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/main/Managements/DiscordRpcManager.ts -------------------------------------------------------------------------------- /src/main/Managements/ElectronAppManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/main/Managements/ElectronAppManager.ts -------------------------------------------------------------------------------- /src/main/Managements/Git/GitHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/main/Managements/Git/GitHelper.ts -------------------------------------------------------------------------------- /src/main/Managements/Git/GitManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/main/Managements/Git/GitManager.ts -------------------------------------------------------------------------------- /src/main/Managements/HotkeysManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/main/Managements/HotkeysManager.ts -------------------------------------------------------------------------------- /src/main/Managements/Ipc/IpcHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/main/Managements/Ipc/IpcHandler.ts -------------------------------------------------------------------------------- /src/main/Managements/Ipc/IpcMainSender.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/main/Managements/Ipc/IpcMainSender.ts -------------------------------------------------------------------------------- /src/main/Managements/Ipc/Methods/IpcMethods-CardExtensions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/main/Managements/Ipc/Methods/IpcMethods-CardExtensions.ts -------------------------------------------------------------------------------- /src/main/Managements/Ipc/Methods/IpcMethods-Downloader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/main/Managements/Ipc/Methods/IpcMethods-Downloader.ts -------------------------------------------------------------------------------- /src/main/Managements/Ipc/Methods/IpcMethods-Initializer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/main/Managements/Ipc/Methods/IpcMethods-Initializer.ts -------------------------------------------------------------------------------- /src/main/Managements/Ipc/Methods/IpcMethods-Platform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/main/Managements/Ipc/Methods/IpcMethods-Platform.ts -------------------------------------------------------------------------------- /src/main/Managements/Ipc/Methods/IpcMethods-Pty.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/main/Managements/Ipc/Methods/IpcMethods-Pty.ts -------------------------------------------------------------------------------- /src/main/Managements/Ipc/Methods/IpcMethods-Repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/main/Managements/Ipc/Methods/IpcMethods-Repository.ts -------------------------------------------------------------------------------- /src/main/Managements/Ipc/Methods/IpcMethods.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/main/Managements/Ipc/Methods/IpcMethods.ts -------------------------------------------------------------------------------- /src/main/Managements/Plugin/Extensions/ExtensionApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/main/Managements/Plugin/Extensions/ExtensionApi.ts -------------------------------------------------------------------------------- /src/main/Managements/Plugin/Extensions/ExtensionManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/main/Managements/Plugin/Extensions/ExtensionManager.ts -------------------------------------------------------------------------------- /src/main/Managements/Plugin/Extensions/ExtensionTypes_Main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/main/Managements/Plugin/Extensions/ExtensionTypes_Main.ts -------------------------------------------------------------------------------- /src/main/Managements/Plugin/Extensions/ExtensionUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/main/Managements/Plugin/Extensions/ExtensionUtils.ts -------------------------------------------------------------------------------- /src/main/Managements/Plugin/Modules/ModuleManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/main/Managements/Plugin/Modules/ModuleManager.ts -------------------------------------------------------------------------------- /src/main/Managements/Plugin/PluginConstants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/main/Managements/Plugin/PluginConstants.ts -------------------------------------------------------------------------------- /src/main/Managements/Plugin/PluginManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/main/Managements/Plugin/PluginManager.ts -------------------------------------------------------------------------------- /src/main/Managements/Plugin/PluginMigrate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/main/Managements/Plugin/PluginMigrate.ts -------------------------------------------------------------------------------- /src/main/Managements/Plugin/PluginSentry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/main/Managements/Plugin/PluginSentry.ts -------------------------------------------------------------------------------- /src/main/Managements/Plugin/PluginUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/main/Managements/Plugin/PluginUtils.ts -------------------------------------------------------------------------------- /src/main/Managements/PtyManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/main/Managements/PtyManager.ts -------------------------------------------------------------------------------- /src/main/Managements/ShareScreenManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/main/Managements/ShareScreenManager.ts -------------------------------------------------------------------------------- /src/main/Managements/StaticsManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/main/Managements/StaticsManager.ts -------------------------------------------------------------------------------- /src/main/Managements/Storage/BaseStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/main/Managements/Storage/BaseStorage.ts -------------------------------------------------------------------------------- /src/main/Managements/Storage/StorageManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/main/Managements/Storage/StorageManager.ts -------------------------------------------------------------------------------- /src/main/Managements/ToastWindowManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/main/Managements/ToastWindowManager.ts -------------------------------------------------------------------------------- /src/main/Managements/TrayManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/main/Managements/TrayManager.ts -------------------------------------------------------------------------------- /src/main/Utilities/CalculateFolderSize/CalculateFolderSize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/main/Utilities/CalculateFolderSize/CalculateFolderSize.ts -------------------------------------------------------------------------------- /src/main/Utilities/CalculateFolderSize/DownloadDU.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/main/Utilities/CalculateFolderSize/DownloadDU.ts -------------------------------------------------------------------------------- /src/main/Utilities/Utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/main/Utilities/Utils.ts -------------------------------------------------------------------------------- /src/main/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/main/index.ts -------------------------------------------------------------------------------- /src/preload/dialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/preload/dialog.js -------------------------------------------------------------------------------- /src/preload/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/preload/index.js -------------------------------------------------------------------------------- /src/preload/only_ipc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/preload/only_ipc.js -------------------------------------------------------------------------------- /src/preload/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/preload/utils.js -------------------------------------------------------------------------------- /src/preload/webview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/preload/webview.js -------------------------------------------------------------------------------- /src/renderer/Breadcrumbs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/Breadcrumbs.tsx -------------------------------------------------------------------------------- /src/renderer/HeroUiConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/HeroUiConfig.ts -------------------------------------------------------------------------------- /src/renderer/SentryInit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/SentryInit.ts -------------------------------------------------------------------------------- /src/renderer/assets/fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/assets/fonts.css -------------------------------------------------------------------------------- /src/renderer/assets/fonts/JetBrainsMono/JetBrainsMono.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/assets/fonts/JetBrainsMono/JetBrainsMono.ttf -------------------------------------------------------------------------------- /src/renderer/assets/fonts/Nunito/Nunito-Italic-VariableFont_wght.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/assets/fonts/Nunito/Nunito-Italic-VariableFont_wght.ttf -------------------------------------------------------------------------------- /src/renderer/assets/fonts/Nunito/Nunito-VariableFont_wght.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/assets/fonts/Nunito/Nunito-VariableFont_wght.ttf -------------------------------------------------------------------------------- /src/renderer/context_menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/context_menu.html -------------------------------------------------------------------------------- /src/renderer/context_menu/Components/ContextHooks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/context_menu/Components/ContextHooks.tsx -------------------------------------------------------------------------------- /src/renderer/context_menu/Components/OtherMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/context_menu/Components/OtherMenu.tsx -------------------------------------------------------------------------------- /src/renderer/context_menu/Components/RightClickMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/context_menu/Components/RightClickMenu.tsx -------------------------------------------------------------------------------- /src/renderer/context_menu/Components/SvgIcons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/context_menu/Components/SvgIcons.tsx -------------------------------------------------------------------------------- /src/renderer/context_menu/Components/TerminateMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/context_menu/Components/TerminateMenu.tsx -------------------------------------------------------------------------------- /src/renderer/context_menu/ContextMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/context_menu/ContextMenu.tsx -------------------------------------------------------------------------------- /src/renderer/context_menu/UIProviders.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/context_menu/UIProviders.tsx -------------------------------------------------------------------------------- /src/renderer/context_menu/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/context_menu/main.tsx -------------------------------------------------------------------------------- /src/renderer/cross_styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/cross_styles.css -------------------------------------------------------------------------------- /src/renderer/dialog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/dialog.html -------------------------------------------------------------------------------- /src/renderer/dialog/Dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/dialog/Dialog.tsx -------------------------------------------------------------------------------- /src/renderer/dialog/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/dialog/main.tsx -------------------------------------------------------------------------------- /src/renderer/downloads_menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/downloads_menu.html -------------------------------------------------------------------------------- /src/renderer/downloads_menu/DownloadItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/downloads_menu/DownloadItem.tsx -------------------------------------------------------------------------------- /src/renderer/downloads_menu/DownloadMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/downloads_menu/DownloadMenu.tsx -------------------------------------------------------------------------------- /src/renderer/downloads_menu/UtilMethods.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/downloads_menu/UtilMethods.tsx -------------------------------------------------------------------------------- /src/renderer/downloads_menu/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/downloads_menu/main.tsx -------------------------------------------------------------------------------- /src/renderer/federation.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/federation.d.ts -------------------------------------------------------------------------------- /src/renderer/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/global.d.ts -------------------------------------------------------------------------------- /src/renderer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/index.html -------------------------------------------------------------------------------- /src/renderer/loading.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/loading.html -------------------------------------------------------------------------------- /src/renderer/loading/Backgrounds/LiquidChromeBG.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/loading/Backgrounds/LiquidChromeBG.tsx -------------------------------------------------------------------------------- /src/renderer/loading/Backgrounds/RippleBG.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/loading/Backgrounds/RippleBG.tsx -------------------------------------------------------------------------------- /src/renderer/loading/Backgrounds/ThreadsBG.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/loading/Backgrounds/ThreadsBG.tsx -------------------------------------------------------------------------------- /src/renderer/loading/Loadings/AppName.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/loading/Loadings/AppName.tsx -------------------------------------------------------------------------------- /src/renderer/loading/Loadings/Container.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/loading/Loadings/Container.tsx -------------------------------------------------------------------------------- /src/renderer/loading/Loadings/LiquidChromeLoading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/loading/Loadings/LiquidChromeLoading.tsx -------------------------------------------------------------------------------- /src/renderer/loading/Loadings/RippleLoading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/loading/Loadings/RippleLoading.tsx -------------------------------------------------------------------------------- /src/renderer/loading/Loadings/SimpleLoading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/loading/Loadings/SimpleLoading.tsx -------------------------------------------------------------------------------- /src/renderer/loading/Loadings/ThreadsLoading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/loading/Loadings/ThreadsLoading.tsx -------------------------------------------------------------------------------- /src/renderer/loading/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/loading/main.tsx -------------------------------------------------------------------------------- /src/renderer/public/LynxHub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/public/LynxHub.png -------------------------------------------------------------------------------- /src/renderer/share_screen.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/share_screen.html -------------------------------------------------------------------------------- /src/renderer/share_screen/ScreenShare.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/share_screen/ScreenShare.tsx -------------------------------------------------------------------------------- /src/renderer/share_screen/SvgIcons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/share_screen/SvgIcons.tsx -------------------------------------------------------------------------------- /src/renderer/share_screen/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/share_screen/main.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/App.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/AppEvents/AppEvents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/AppEvents/AppEvents.ts -------------------------------------------------------------------------------- /src/renderer/src/App/AppEvents/AppEvents_Hooks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/AppEvents/AppEvents_Hooks.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/AppEvents/AppStates_Hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/AppEvents/AppStates_Hooks.ts -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Background.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Background.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Browser_Terminal/Browser/Browser.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Browser_Terminal/Browser/Browser.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Browser_Terminal/Browser/Browser_ActionButtons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Browser_Terminal/Browser/Browser_ActionButtons.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Browser_Terminal/Browser/Browser_AddressBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Browser_Terminal/Browser/Browser_AddressBar.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Browser_Terminal/Browser/Browser_Error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Browser_Terminal/Browser/Browser_Error.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Browser_Terminal/Browser/Browser_Search.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Browser_Terminal/Browser/Browser_Search.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Browser_Terminal/Browser/Browser_TopBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Browser_Terminal/Browser/Browser_TopBar.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Browser_Terminal/Browser/Browser_Zoom.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Browser_Terminal/Browser/Browser_Zoom.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Browser_Terminal/Browser/EmptyPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Browser_Terminal/Browser/EmptyPage.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Browser_Terminal/Browser/EmptyPage_Item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Browser_Terminal/Browser/EmptyPage_Item.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Browser_Terminal/RunningCardView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Browser_Terminal/RunningCardView.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Browser_Terminal/Terminal/Terminal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Browser_Terminal/Terminal/Terminal.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Browser_Terminal/Terminal/TerminalColorHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Browser_Terminal/Terminal/TerminalColorHandler.ts -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Browser_Terminal/Terminal/Terminal_Timer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Browser_Terminal/Terminal/Terminal_Timer.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Browser_Terminal/Terminal/Terminal_TopBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Browser_Terminal/Terminal/Terminal_TopBar.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Browser_Terminal/Terminal/Terminal_Utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Browser_Terminal/Terminal/Terminal_Utils.ts -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Browser_Terminal/TopBar/DownloadManager.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Browser_Terminal/TopBar/DownloadManager.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Browser_Terminal/TopBar/SharedTopBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Browser_Terminal/TopBar/SharedTopBar.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Browser_Terminal/TopBar/Switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Browser_Terminal/TopBar/Switch.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Browser_Terminal/TopBar/Terminate_AI.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Browser_Terminal/TopBar/Terminate_AI.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Browser_Terminal/TopBar/TopBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Browser_Terminal/TopBar/TopBar.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Cards/Card/Card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Cards/Card/Card.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Cards/Card/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Cards/Card/Footer.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Cards/Card/Menu/InstalledMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Cards/Card/Menu/InstalledMenu.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Cards/Card/Menu/Items/About.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Cards/Card/Menu/Items/About.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Cards/Card/Menu/Items/DangerZone.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Cards/Card/Menu/Items/DangerZone.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Cards/Card/Menu/Items/Options.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Cards/Card/Menu/Items/Options.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Cards/Card/Menu/Items/Update.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Cards/Card/Menu/Items/Update.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Cards/Card/Menu/UninstalledMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Cards/Card/Menu/UninstalledMenu.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Cards/Card/PulsingLine.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Cards/Card/PulsingLine.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Cards/Card/RenderCardList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Cards/Card/RenderCardList.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Cards/Card/Wrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Cards/Card/Wrapper.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Cards/CardStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Cards/CardStore.ts -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Cards/Cards.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Cards/Cards.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Cards/CardsByCategory.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Cards/CardsByCategory.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Cards/NavigatePluginsPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Cards/NavigatePluginsPage.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Initializer/Initializer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Initializer/Initializer.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Initializer/OnboardingWizard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Initializer/OnboardingWizard.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Initializer/components/CheckRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Initializer/components/CheckRow.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Initializer/components/PluginSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Initializer/components/PluginSelector.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Initializer/components/RequirementsChecker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Initializer/components/RequirementsChecker.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Initializer/hooks/useRequirementChecks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Initializer/hooks/useRequirementChecks.ts -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Initializer/steps/StepComplete.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Initializer/steps/StepComplete.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Initializer/steps/StepSystemCheck.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Initializer/steps/StepSystemCheck.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Initializer/steps/StepUpdate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Initializer/steps/StepUpdate.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Initializer/steps/StepWelcome.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Initializer/steps/StepWelcome.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Initializer/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Initializer/types.ts -------------------------------------------------------------------------------- /src/renderer/src/App/Components/MainContents/AppPages.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/MainContents/AppPages.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/MainContents/MainContents.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/MainContents/MainContents.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/MainContents/StatusBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/MainContents/StatusBar.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Modals/CardExtensions/Available/Available.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Modals/CardExtensions/Available/Available.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Modals/CardExtensions/Available/RenderItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Modals/CardExtensions/Available/RenderItem.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Modals/CardExtensions/CardExtensions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Modals/CardExtensions/CardExtensions.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Modals/CardExtensions/Clone.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Modals/CardExtensions/Clone.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Modals/CardExtensions/Constants.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Modals/CardExtensions/Constants.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Modals/CardExtensions/Installed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Modals/CardExtensions/Installed.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Modals/CardExtensions/Types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Modals/CardExtensions/Types.ts -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Modals/CardGitManager/Branches.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Modals/CardGitManager/Branches.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Modals/CardGitManager/CardGitManager_Modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Modals/CardGitManager/CardGitManager_Modal.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Modals/CardGitManager/CommitInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Modals/CardGitManager/CommitInfo.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Modals/CardGitManager/Reset_Shallow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Modals/CardGitManager/Reset_Shallow.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Modals/CardInfo/CardInfo-Description.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Modals/CardInfo/CardInfo-Description.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Modals/CardInfo/CardInfo-Modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Modals/CardInfo/CardInfo-Modal.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Modals/CardInfo/UseCardInfoApi.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Modals/CardInfo/UseCardInfoApi.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Modals/CardReadme_Modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Modals/CardReadme_Modal.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Modals/CustomNotification/CustomNotification.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Modals/CustomNotification/CustomNotification.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Modals/InstallUI/Footer-Terminal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Modals/InstallUI/Footer-Terminal.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Modals/InstallUI/Install-Body.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Modals/InstallUI/Install-Body.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Modals/InstallUI/Install-Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Modals/InstallUI/Install-Footer.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Modals/InstallUI/Install-Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Modals/InstallUI/Install-Header.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Modals/InstallUI/Install-Hooks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Modals/InstallUI/Install-Hooks.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Modals/InstallUI/Install-Modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Modals/InstallUI/Install-Modal.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Modals/InstallUI/Utils/CloneOptions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Modals/InstallUI/Utils/CloneOptions.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Modals/InstallUI/Utils/CloneRepo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Modals/InstallUI/Utils/CloneRepo.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Modals/InstallUI/Utils/InstallExtensions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Modals/InstallUI/Utils/InstallExtensions.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Modals/InstallUI/Utils/InstallStepper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Modals/InstallUI/Utils/InstallStepper.ts -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Modals/InstallUI/Utils/LocateWarning.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Modals/InstallUI/Utils/LocateWarning.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Modals/InstallUI/Utils/TerminalStep.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Modals/InstallUI/Utils/TerminalStep.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Modals/InstallUI/Utils/UserInputs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Modals/InstallUI/Utils/UserInputs.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Modals/InstallUI/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Modals/InstallUI/types.d.ts -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Modals/LaunchConfig/Arguments/AddArguments/AddArguments.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Modals/LaunchConfig/Arguments/AddArguments/AddArguments.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Modals/LaunchConfig/Arguments/AddArguments/ArgumentCategory.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Modals/LaunchConfig/Arguments/AddArguments/ArgumentCategory.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Modals/LaunchConfig/Arguments/CardArguments.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Modals/LaunchConfig/Arguments/CardArguments.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Modals/LaunchConfig/Arguments/ManageArguments/Items/Argument-Item-Base.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Modals/LaunchConfig/Arguments/ManageArguments/Items/Argument-Item-Base.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Modals/LaunchConfig/Arguments/ManageArguments/Items/AutoCompletePath.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Modals/LaunchConfig/Arguments/ManageArguments/Items/AutoCompletePath.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Modals/LaunchConfig/Arguments/ManageArguments/Items/CheckBoxArg-Item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Modals/LaunchConfig/Arguments/ManageArguments/Items/CheckBoxArg-Item.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Modals/LaunchConfig/Arguments/ManageArguments/Items/DirectoryArg-Item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Modals/LaunchConfig/Arguments/ManageArguments/Items/DirectoryArg-Item.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Modals/LaunchConfig/Arguments/ManageArguments/Items/DropdownArg-Item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Modals/LaunchConfig/Arguments/ManageArguments/Items/DropdownArg-Item.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Modals/LaunchConfig/Arguments/ManageArguments/Items/FileArg-Item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Modals/LaunchConfig/Arguments/ManageArguments/Items/FileArg-Item.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Modals/LaunchConfig/Arguments/ManageArguments/Items/InputArg-Item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Modals/LaunchConfig/Arguments/ManageArguments/Items/InputArg-Item.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Modals/LaunchConfig/Arguments/ManageArguments/Items/PathArgItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Modals/LaunchConfig/Arguments/ManageArguments/Items/PathArgItem.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Modals/LaunchConfig/Arguments/ManageArguments/ManageArguments-Item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Modals/LaunchConfig/Arguments/ManageArguments/ManageArguments-Item.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Modals/LaunchConfig/Arguments/ManageArguments/ManageArguments.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Modals/LaunchConfig/Arguments/ManageArguments/ManageArguments.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Modals/LaunchConfig/Arguments/ManageArguments/PresetsManager.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Modals/LaunchConfig/Arguments/ManageArguments/PresetsManager.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Modals/LaunchConfig/Arguments/PreviewArguments.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Modals/LaunchConfig/Arguments/PreviewArguments.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Modals/LaunchConfig/CustomRun/CustomRun.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Modals/LaunchConfig/CustomRun/CustomRun.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Modals/LaunchConfig/CustomRun/CustomRunBehavior.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Modals/LaunchConfig/CustomRun/CustomRunBehavior.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Modals/LaunchConfig/CustomRun/CustomRunCommands.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Modals/LaunchConfig/CustomRun/CustomRunCommands.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Modals/LaunchConfig/CustomRun/UrlCatch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Modals/LaunchConfig/CustomRun/UrlCatch.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Modals/LaunchConfig/LaunchConfig-Section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Modals/LaunchConfig/LaunchConfig-Section.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Modals/LaunchConfig/LaunchConfig.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Modals/LaunchConfig/LaunchConfig.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Modals/LaunchConfig/PreLaunch/CardPreLaunch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Modals/LaunchConfig/PreLaunch/CardPreLaunch.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Modals/LaunchConfig/PreLaunch/PreOpenPath/PreOpenPath-Item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Modals/LaunchConfig/PreLaunch/PreOpenPath/PreOpenPath-Item.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Modals/LaunchConfig/PreLaunch/PreOpenPath/PreOpenPath.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Modals/LaunchConfig/PreLaunch/PreOpenPath/PreOpenPath.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Modals/LaunchConfig/PreLaunch/PreTerminalCommands/PreTerminalCommands.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Modals/LaunchConfig/PreLaunch/PreTerminalCommands/PreTerminalCommands.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Modals/LaunchConfig/TerminalCommand-Item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Modals/LaunchConfig/TerminalCommand-Item.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Modals/Modals.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Modals/Modals.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Modals/UnassignCard/UnassignCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Modals/UnassignCard/UnassignCard.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Modals/UninstallCard/UninstallCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Modals/UninstallCard/UninstallCard.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Modals/UpdateApp/Downloaded.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Modals/UpdateApp/Downloaded.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Modals/UpdateApp/Downloading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Modals/UpdateApp/Downloading.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Modals/UpdateApp/Info.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Modals/UpdateApp/Info.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Modals/UpdateApp/UpdateApp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Modals/UpdateApp/UpdateApp.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Modals/UpdatingCard/UpdateDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Modals/UpdatingCard/UpdateDetails.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Modals/UpdatingCard/UpdatingNotification.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Modals/UpdatingCard/UpdatingNotification.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Modals/Warning/WarningContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Modals/Warning/WarningContent.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Modals/Warning/WarningModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Modals/Warning/WarningModal.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/NavBar/NavBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/NavBar/NavBar.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/NavBar/NavButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/NavBar/NavButton.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/NavBar/NavButtons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/NavBar/NavButtons.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/NavBar/NavTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/NavBar/NavTooltip.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/NavBar/NavigationDock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/NavBar/NavigationDock.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Pages/CardContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Pages/CardContainer.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Pages/ContentPages/AgentsPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Pages/ContentPages/AgentsPage.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Pages/ContentPages/AudioGenerationPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Pages/ContentPages/AudioGenerationPage.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Pages/ContentPages/GamesPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Pages/ContentPages/GamesPage.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Pages/ContentPages/Home/HomeCategory.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Pages/ContentPages/Home/HomeCategory.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Pages/ContentPages/Home/HomeFilter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Pages/ContentPages/Home/HomeFilter.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Pages/ContentPages/Home/HomePage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Pages/ContentPages/Home/HomePage.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Pages/ContentPages/Home/HomeSearchBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Pages/ContentPages/Home/HomeSearchBox.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Pages/ContentPages/Home/Home_TopBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Pages/ContentPages/Home/Home_TopBar.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Pages/ContentPages/Home/Notification/Home_Notification.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Pages/ContentPages/Home/Notification/Home_Notification.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Pages/ContentPages/Home/Notification/StaticNotifications.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Pages/ContentPages/Home/Notification/StaticNotifications.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Pages/ContentPages/ImageGenerationPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Pages/ContentPages/ImageGenerationPage.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Pages/ContentPages/OthersPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Pages/ContentPages/OthersPage.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Pages/ContentPages/TextGenerationPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Pages/ContentPages/TextGenerationPage.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Pages/ContentPages/ToolsPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Pages/ContentPages/ToolsPage.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Pages/Page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Pages/Page.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Pages/SettingsPages/Dashboard/Content/Dashboard-About.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Pages/SettingsPages/Dashboard/Content/Dashboard-About.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Pages/SettingsPages/Dashboard/Content/Dashboard-Credits.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Pages/SettingsPages/Dashboard/Content/Dashboard-Credits.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Pages/SettingsPages/Dashboard/Content/Dashboard-ReportIssue.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Pages/SettingsPages/Dashboard/Content/Dashboard-ReportIssue.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Pages/SettingsPages/Dashboard/Content/Dashboard-Update.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Pages/SettingsPages/Dashboard/Content/Dashboard-Update.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Pages/SettingsPages/Dashboard/Content/Profile/Dashboard-Profile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Pages/SettingsPages/Dashboard/Content/Profile/Dashboard-Profile.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Pages/SettingsPages/Dashboard/Content/Profile/Profile_Google.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Pages/SettingsPages/Dashboard/Content/Profile/Profile_Google.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Pages/SettingsPages/Dashboard/Content/Profile/Profile_Patreon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Pages/SettingsPages/Dashboard/Content/Profile/Profile_Patreon.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Pages/SettingsPages/Dashboard/DashboardContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Pages/SettingsPages/Dashboard/DashboardContainer.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Pages/SettingsPages/Dashboard/DashboardPage-Contents.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Pages/SettingsPages/Dashboard/DashboardPage-Contents.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Pages/SettingsPages/Dashboard/DashboardPage-Nav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Pages/SettingsPages/Dashboard/DashboardPage-Nav.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Pages/SettingsPages/Dashboard/DashboardPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Pages/SettingsPages/Dashboard/DashboardPage.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Pages/SettingsPages/Plugins/Elements.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Pages/SettingsPages/Plugins/Elements.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Pages/SettingsPages/Plugins/List/List.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Pages/SettingsPages/Plugins/List/List.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Pages/SettingsPages/Plugins/List/List_Item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Pages/SettingsPages/Plugins/List/List_Item.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Pages/SettingsPages/Plugins/List/List_Utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Pages/SettingsPages/Plugins/List/List_Utils.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Pages/SettingsPages/Plugins/Page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Pages/SettingsPages/Plugins/Page.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Pages/SettingsPages/Plugins/Preview/ActionButtons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Pages/SettingsPages/Plugins/Preview/ActionButtons.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Pages/SettingsPages/Plugins/Preview/Body.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Pages/SettingsPages/Plugins/Preview/Body.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Pages/SettingsPages/Plugins/Preview/ChangelogList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Pages/SettingsPages/Plugins/Preview/ChangelogList.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Pages/SettingsPages/Plugins/Preview/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Pages/SettingsPages/Plugins/Preview/Header.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Pages/SettingsPages/Plugins/Preview/Preview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Pages/SettingsPages/Plugins/Preview/Preview.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Pages/SettingsPages/Plugins/Preview/Versions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Pages/SettingsPages/Plugins/Preview/Versions.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Pages/SettingsPages/SecurityWarning.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Pages/SettingsPages/SecurityWarning.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Pages/SettingsPages/Settings/Content/Browser/SettingsBrowser.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Pages/SettingsPages/Settings/Content/Browser/SettingsBrowser.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Pages/SettingsPages/Settings/Content/Browser/SettingsBrowser_ClearData.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Pages/SettingsPages/Settings/Content/Browser/SettingsBrowser_ClearData.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Pages/SettingsPages/Settings/Content/Browser/SettingsBrowser_Links.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Pages/SettingsPages/Settings/Content/Browser/SettingsBrowser_Links.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Pages/SettingsPages/Settings/Content/Browser/SettingsBrowser_UserAgent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Pages/SettingsPages/Settings/Content/Browser/SettingsBrowser_UserAgent.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Pages/SettingsPages/Settings/Content/Card/CheckUpdateInterval.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Pages/SettingsPages/Settings/Content/Card/CheckUpdateInterval.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Pages/SettingsPages/Settings/Content/Card/Settings-Card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Pages/SettingsPages/Settings/Content/Card/Settings-Card.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Pages/SettingsPages/Settings/Content/General/Settings-General.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Pages/SettingsPages/Settings/Content/General/Settings-General.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Pages/SettingsPages/Settings/Content/General/SettingsGeneral-CollectErrors.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Pages/SettingsPages/Settings/Content/General/SettingsGeneral-CollectErrors.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Pages/SettingsPages/Settings/Content/General/SettingsGeneral-Confirm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Pages/SettingsPages/Settings/Content/General/SettingsGeneral-Confirm.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Pages/SettingsPages/Settings/Content/General/SettingsGeneral-HWAcc.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Pages/SettingsPages/Settings/Content/General/SettingsGeneral-HWAcc.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Pages/SettingsPages/Settings/Content/General/SettingsGeneral-Taskbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Pages/SettingsPages/Settings/Content/General/SettingsGeneral-Taskbar.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Pages/SettingsPages/Settings/Content/General/SettingsGeneral-Theme.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Pages/SettingsPages/Settings/Content/General/SettingsGeneral-Theme.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Pages/SettingsPages/Settings/Content/General/SettingsGeneral-TitleName.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Pages/SettingsPages/Settings/Content/General/SettingsGeneral-TitleName.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Pages/SettingsPages/Settings/Content/General/SettingsGeneral-Tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Pages/SettingsPages/Settings/Content/General/SettingsGeneral-Tooltip.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Pages/SettingsPages/Settings/Content/General/ThemeSwitchAnimationHook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Pages/SettingsPages/Settings/Content/General/ThemeSwitchAnimationHook.ts -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Pages/SettingsPages/Settings/Content/HotkeySettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Pages/SettingsPages/Settings/Content/HotkeySettings.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Pages/SettingsPages/Settings/Content/Settings-Clear.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Pages/SettingsPages/Settings/Content/Settings-Clear.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Pages/SettingsPages/Settings/Content/Settings-Data.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Pages/SettingsPages/Settings/Content/Settings-Data.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Pages/SettingsPages/Settings/Content/Settings-Discord.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Pages/SettingsPages/Settings/Content/Settings-Discord.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Pages/SettingsPages/Settings/Content/Startup/Settings-Startup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Pages/SettingsPages/Settings/Content/Startup/Settings-Startup.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Pages/SettingsPages/Settings/Content/Startup/SettingsStartup-DisableLoadingAnim.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Pages/SettingsPages/Settings/Content/Startup/SettingsStartup-DisableLoadingAnim.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Pages/SettingsPages/Settings/Content/Startup/SettingsStartup-LastSize.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Pages/SettingsPages/Settings/Content/Startup/SettingsStartup-LastSize.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Pages/SettingsPages/Settings/Content/Startup/SettingsStartup-StartMaximized.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Pages/SettingsPages/Settings/Content/Startup/SettingsStartup-StartMaximized.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Pages/SettingsPages/Settings/Content/Startup/SettingsStartup-StartMinimized.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Pages/SettingsPages/Settings/Content/Startup/SettingsStartup-StartMinimized.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Pages/SettingsPages/Settings/Content/Startup/SettingsStartup-StartPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Pages/SettingsPages/Settings/Content/Startup/SettingsStartup-StartPage.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Pages/SettingsPages/Settings/Content/Startup/SettingsStartup-System.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Pages/SettingsPages/Settings/Content/Startup/SettingsStartup-System.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Pages/SettingsPages/Settings/Content/Terminal/Settings-Terminal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Pages/SettingsPages/Settings/Content/Terminal/Settings-Terminal.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Pages/SettingsPages/Settings/Content/Terminal/SettingsTerminal-BlinkCursor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Pages/SettingsPages/Settings/Content/Terminal/SettingsTerminal-BlinkCursor.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Pages/SettingsPages/Settings/Content/Terminal/SettingsTerminal-CloseOnExit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Pages/SettingsPages/Settings/Content/Terminal/SettingsTerminal-CloseOnExit.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Pages/SettingsPages/Settings/Content/Terminal/SettingsTerminal-Conpty.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Pages/SettingsPages/Settings/Content/Terminal/SettingsTerminal-Conpty.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Pages/SettingsPages/Settings/Content/Terminal/SettingsTerminal-CursorInactiveStyle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Pages/SettingsPages/Settings/Content/Terminal/SettingsTerminal-CursorInactiveStyle.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Pages/SettingsPages/Settings/Content/Terminal/SettingsTerminal-CursorStyle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Pages/SettingsPages/Settings/Content/Terminal/SettingsTerminal-CursorStyle.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Pages/SettingsPages/Settings/Content/Terminal/SettingsTerminal-FontSize.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Pages/SettingsPages/Settings/Content/Terminal/SettingsTerminal-FontSize.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Pages/SettingsPages/Settings/Content/Terminal/SettingsTerminal-OutputColor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Pages/SettingsPages/Settings/Content/Terminal/SettingsTerminal-OutputColor.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Pages/SettingsPages/Settings/Content/Terminal/SettingsTerminal-Reset.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Pages/SettingsPages/Settings/Content/Terminal/SettingsTerminal-Reset.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Pages/SettingsPages/Settings/Content/Terminal/SettingsTerminal-ResizeDelay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Pages/SettingsPages/Settings/Content/Terminal/SettingsTerminal-ResizeDelay.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Pages/SettingsPages/Settings/Content/Terminal/SettingsTerminal-ScrollBack.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Pages/SettingsPages/Settings/Content/Terminal/SettingsTerminal-ScrollBack.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Pages/SettingsPages/Settings/SettingsContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Pages/SettingsPages/Settings/SettingsContainer.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Pages/SettingsPages/Settings/SettingsPage-ContentSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Pages/SettingsPages/Settings/SettingsPage-ContentSection.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Pages/SettingsPages/Settings/SettingsPage-Contents.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Pages/SettingsPages/Settings/SettingsPage-Contents.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Pages/SettingsPages/Settings/SettingsPage-Nav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Pages/SettingsPages/Settings/SettingsPage-Nav.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Pages/SettingsPages/Settings/SettingsPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Pages/SettingsPages/Settings/SettingsPage.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Reusable/CopyClipboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Reusable/CopyClipboard.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Reusable/LynxScroll.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Reusable/LynxScroll.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Reusable/LynxSwitch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Reusable/LynxSwitch.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Reusable/LynxTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Reusable/LynxTooltip.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Reusable/MarkdownViewer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Reusable/MarkdownViewer.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Reusable/OpenDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Reusable/OpenDialog.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Reusable/ShinyText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Reusable/ShinyText.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Reusable/SmallButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Reusable/SmallButton.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Tabs/NewTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Tabs/NewTab.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Tabs/TabContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Tabs/TabContainer.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Tabs/TabItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Tabs/TabItem.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Tabs/TabItem_Icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Tabs/TabItem_Icon.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Tabs/TabTitle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Tabs/TabTitle.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/Tabs/Tab_Utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/Tabs/Tab_Utils.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/TitleBar/TitleBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/TitleBar/TitleBar.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/TitleBar/WindowButtons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/TitleBar/WindowButtons.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Components/TitleBar/WindowButtons_Close.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Components/TitleBar/WindowButtons_Close.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/ExtensionHooks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/ExtensionHooks.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Extensions/ExtensionLoader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Extensions/ExtensionLoader.ts -------------------------------------------------------------------------------- /src/renderer/src/App/Extensions/Extension_Utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Extensions/Extension_Utils.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Extensions/Vite-Federation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Extensions/Vite-Federation.ts -------------------------------------------------------------------------------- /src/renderer/src/App/MainHooks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/MainHooks.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Modules/ModuleLoader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Modules/ModuleLoader.ts -------------------------------------------------------------------------------- /src/renderer/src/App/PluginSentry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/PluginSentry.ts -------------------------------------------------------------------------------- /src/renderer/src/App/Redux/Reducer/AppReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Redux/Reducer/AppReducer.ts -------------------------------------------------------------------------------- /src/renderer/src/App/Redux/Reducer/CardsReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Redux/Reducer/CardsReducer.ts -------------------------------------------------------------------------------- /src/renderer/src/App/Redux/Reducer/HotkeysReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Redux/Reducer/HotkeysReducer.ts -------------------------------------------------------------------------------- /src/renderer/src/App/Redux/Reducer/ModalsReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Redux/Reducer/ModalsReducer.ts -------------------------------------------------------------------------------- /src/renderer/src/App/Redux/Reducer/PluginsReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Redux/Reducer/PluginsReducer.ts -------------------------------------------------------------------------------- /src/renderer/src/App/Redux/Reducer/SettingsReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Redux/Reducer/SettingsReducer.ts -------------------------------------------------------------------------------- /src/renderer/src/App/Redux/Reducer/TabsReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Redux/Reducer/TabsReducer.ts -------------------------------------------------------------------------------- /src/renderer/src/App/Redux/Reducer/TerminalReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Redux/Reducer/TerminalReducer.ts -------------------------------------------------------------------------------- /src/renderer/src/App/Redux/Reducer/UserReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Redux/Reducer/UserReducer.ts -------------------------------------------------------------------------------- /src/renderer/src/App/Redux/Store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Redux/Store.ts -------------------------------------------------------------------------------- /src/renderer/src/App/RendererIpc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/RendererIpc.ts -------------------------------------------------------------------------------- /src/renderer/src/App/UIProviders.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/UIProviders.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Utils/Constants.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Utils/Constants.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Utils/CrossStyle.tsx: -------------------------------------------------------------------------------- 1 | export const ContainersBg = ' bg-white/10 dark:bg-LynxRaisinBlack/20 '; 2 | -------------------------------------------------------------------------------- /src/renderer/src/App/Utils/LocalStorage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Utils/LocalStorage.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Utils/RegisterHotkeys.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Utils/RegisterHotkeys.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Utils/SetHtmlAttributes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Utils/SetHtmlAttributes.tsx -------------------------------------------------------------------------------- /src/renderer/src/App/Utils/Types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Utils/Types.ts -------------------------------------------------------------------------------- /src/renderer/src/App/Utils/UtilFunctions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Utils/UtilFunctions.ts -------------------------------------------------------------------------------- /src/renderer/src/App/Utils/UtilHooks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/App/Utils/UtilHooks.tsx -------------------------------------------------------------------------------- /src/renderer/src/ErrorComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/ErrorComponent.tsx -------------------------------------------------------------------------------- /src/renderer/src/assets/icons/SvgIcons/SvgIcons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/assets/icons/SvgIcons/SvgIcons.tsx -------------------------------------------------------------------------------- /src/renderer/src/assets/icons/SvgIcons/SvgIconsColor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/assets/icons/SvgIcons/SvgIconsColor.tsx -------------------------------------------------------------------------------- /src/renderer/src/assets/icons/SvgIconsContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/assets/icons/SvgIconsContainer.tsx -------------------------------------------------------------------------------- /src/renderer/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/index.css -------------------------------------------------------------------------------- /src/renderer/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/src/main.tsx -------------------------------------------------------------------------------- /src/renderer/toast__window/ToastContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/toast__window/ToastContent.tsx -------------------------------------------------------------------------------- /src/renderer/toast__window/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/toast__window/main.tsx -------------------------------------------------------------------------------- /src/renderer/toast__window/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/toast__window/types.d.ts -------------------------------------------------------------------------------- /src/renderer/toast_window.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/src/renderer/toast_window.html -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /tsconfig.web.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindaBrazy/LynxHub/HEAD/tsconfig.web.json --------------------------------------------------------------------------------