Now GUI and the app itself is divided into two different binaries. The app also provides system tray icon. Whereas the GUI can be used to configure the app.
19 lines
No EOL
453 B
Svelte
19 lines
No EOL
453 B
Svelte
<!-- src/App.svelte -->
|
|
<script>
|
|
import { Router } from "@roxi/routify";
|
|
import { routes } from "../.routify/routes";
|
|
|
|
import { SvelteUIProvider } from '@svelteuidev/core';
|
|
|
|
import Events from "./Events.svelte";
|
|
|
|
/** START LISTENING **/
|
|
import { startListening } from "./functions";
|
|
startListening();
|
|
</script>
|
|
|
|
<SvelteUIProvider themeObserver='dark' withNormalizeCSS withGlobalStyles>
|
|
<Router {routes} />
|
|
</SvelteUIProvider>
|
|
|
|
<Events /> |