From b09756910e40e608efb498790fb485148d12f9c7 Mon Sep 17 00:00:00 2001 From: KorbsStudio Date: Tue, 14 Feb 2023 14:45:51 -0500 Subject: [PATCH] Rename Background for Splash/add notification type --- .env | 9 +++++++-- astro/config.ts | 2 +- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/.env b/.env index 89761d5..4689d9f 100644 --- a/.env +++ b/.env @@ -17,9 +17,14 @@ SourceCode="https://github.com/company/app-name" ####################### # Theming ## Splash +## Document: https://nexus-polestar.korbsstudio.com/basics/configuration/#splash LoadingIndicator="Spinner" # "Spinner" "ProgressBar" "JumpingBalls" "GlowingBars" -Background="#232323" +SplashBackground="#232323" # Notifications +# Document: https://nexus-polestar.korbsstudio.com/basics/notifications/ ## Pushy -PushyAppId="YourAppIdHere" \ No newline at end of file +PushyAppId="63e9212d7446e48a2a0e8ec0" + +## Theming +NotificationType="Custom" # "Custom" "Native" \ No newline at end of file diff --git a/astro/config.ts b/astro/config.ts index df025d2..3a76500 100644 --- a/astro/config.ts +++ b/astro/config.ts @@ -15,7 +15,7 @@ export const APP = [{ export const SPLASH = [ { loading: import.meta.env.LoadingIndicator, - background: import.meta.env.Background + background: import.meta.env.SplashBackground } ]