mirror of
https://github.com/kunkunsh/kunkun-ext-neohtop.git
synced 2025-04-03 01:16:43 +00:00
feat: Add shell permission and update process killing method in processes store
This commit is contained in:
parent
b7d562a3cb
commit
60ef3a4ff7
4
package-lock.json
generated
4
package-lock.json
generated
@ -1,12 +1,12 @@
|
||||
{
|
||||
"name": "kunkun-ext-neohtop",
|
||||
"version": "1.1.2",
|
||||
"version": "1.1.6",
|
||||
"lockfileVersion": 3,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "kunkun-ext-neohtop",
|
||||
"version": "1.1.2",
|
||||
"version": "1.1.6",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@fortawesome/fontawesome-svg-core": "^6.6.0",
|
||||
|
@ -5,7 +5,7 @@
|
||||
"type": "git",
|
||||
"url": "https://github.com/kunkunsh/kunkun-ext-neohtop.git"
|
||||
},
|
||||
"version": "1.1.5",
|
||||
"version": "1.1.6",
|
||||
"description": "",
|
||||
"type": "module",
|
||||
"kunkun": {
|
||||
@ -17,7 +17,8 @@
|
||||
"https://imgur.com/D8VHDEz.png"
|
||||
],
|
||||
"permissions": [
|
||||
"system-info:all"
|
||||
"system-info:all",
|
||||
"shell:kill-any"
|
||||
],
|
||||
"icon": {
|
||||
"type": "remote-url",
|
||||
|
@ -26,8 +26,9 @@
|
||||
body {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial,
|
||||
sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
|
||||
font-family:
|
||||
-apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif,
|
||||
"Apple Color Emoji", "Segoe UI Emoji";
|
||||
background-color: var(--base);
|
||||
color: var(--text);
|
||||
-webkit-font-smoothing: antialiased;
|
||||
|
@ -4,6 +4,7 @@ import { invoke } from "@tauri-apps/api/core";
|
||||
import { sysInfo } from "@kksh/api/ui/custom";
|
||||
import { processMonitor } from "$lib/utils/processMonitor";
|
||||
import { systemMonitor } from "$lib/utils/systemMonitor";
|
||||
import { shell } from "@kksh/api/ui/custom";
|
||||
|
||||
interface ProcessStore {
|
||||
processes: Process[];
|
||||
@ -86,7 +87,8 @@ function createProcessStore() {
|
||||
const killProcess = async (pid: number) => {
|
||||
try {
|
||||
update((state) => ({ ...state, isKilling: true }));
|
||||
const success = await invoke<boolean>("kill_process", { pid });
|
||||
// const success = await invoke<boolean>("kill_process", { pid });
|
||||
const success = await shell.killPid(pid).then(() => true);
|
||||
if (success) {
|
||||
await getProcesses();
|
||||
} else {
|
||||
|
Loading…
x
Reference in New Issue
Block a user