diff --git a/package.json b/package.json index 1f141f4..91d1019 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,7 @@ "type": "git", "url": "https://github.com/kunkunsh/kunkun-ext-neohtop.git" }, - "version": "1.1.2", + "version": "1.1.3", "description": "", "type": "module", "kunkun": { @@ -29,7 +29,14 @@ "main": "/", "dist": "build", "devMain": "http://localhost:1420", - "cmds": [] + "cmds": [], + "window": { + "title": "Neohtop", + "hiddenTitle": true, + "titleBarStyle": "overlay", + "width": 1400, + "height": 1000 + } } ] }, diff --git a/src/lib/components/TitleBar.svelte b/src/lib/components/TitleBar.svelte index 9960a3c..c672792 100644 --- a/src/lib/components/TitleBar.svelte +++ b/src/lib/components/TitleBar.svelte @@ -1,7 +1,7 @@ -
+
NeoHtop
NeoHtop
diff --git a/src/routes/+page.svelte b/src/routes/+page.svelte index f5c1787..3263873 100644 --- a/src/routes/+page.svelte +++ b/src/routes/+page.svelte @@ -11,6 +11,7 @@ import { themeStore, settingsStore, processStore } from "$lib/stores/index"; import { column_definitions } from "$lib/definitions/columns"; import { filterProcesses, sortProcesses } from "$lib/utils"; + import { ui } from "@kksh/api/ui/custom"; $: ({ processes, @@ -71,6 +72,8 @@ } onMount(async () => { + ui.showBackButton("bottom-right"); + ui.registerDragRegion(); try { await processStore.getProcesses(); } catch (error) {