feat: Add shell permission and update process killing method in processes store

This commit is contained in:
Huakun Shen 2025-03-21 08:57:24 -04:00
parent b7d562a3cb
commit 60ef3a4ff7
No known key found for this signature in database
4 changed files with 11 additions and 7 deletions

4
package-lock.json generated
View File

@ -1,12 +1,12 @@
{ {
"name": "kunkun-ext-neohtop", "name": "kunkun-ext-neohtop",
"version": "1.1.2", "version": "1.1.6",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "kunkun-ext-neohtop", "name": "kunkun-ext-neohtop",
"version": "1.1.2", "version": "1.1.6",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.6.0", "@fortawesome/fontawesome-svg-core": "^6.6.0",

View File

@ -5,7 +5,7 @@
"type": "git", "type": "git",
"url": "https://github.com/kunkunsh/kunkun-ext-neohtop.git" "url": "https://github.com/kunkunsh/kunkun-ext-neohtop.git"
}, },
"version": "1.1.5", "version": "1.1.6",
"description": "", "description": "",
"type": "module", "type": "module",
"kunkun": { "kunkun": {
@ -17,7 +17,8 @@
"https://imgur.com/D8VHDEz.png" "https://imgur.com/D8VHDEz.png"
], ],
"permissions": [ "permissions": [
"system-info:all" "system-info:all",
"shell:kill-any"
], ],
"icon": { "icon": {
"type": "remote-url", "type": "remote-url",

View File

@ -26,8 +26,9 @@
body { body {
margin: 0; margin: 0;
padding: 0; padding: 0;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, font-family:
sans-serif, "Apple Color Emoji", "Segoe UI Emoji"; -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif,
"Apple Color Emoji", "Segoe UI Emoji";
background-color: var(--base); background-color: var(--base);
color: var(--text); color: var(--text);
-webkit-font-smoothing: antialiased; -webkit-font-smoothing: antialiased;

View File

@ -4,6 +4,7 @@ import { invoke } from "@tauri-apps/api/core";
import { sysInfo } from "@kksh/api/ui/custom"; import { sysInfo } from "@kksh/api/ui/custom";
import { processMonitor } from "$lib/utils/processMonitor"; import { processMonitor } from "$lib/utils/processMonitor";
import { systemMonitor } from "$lib/utils/systemMonitor"; import { systemMonitor } from "$lib/utils/systemMonitor";
import { shell } from "@kksh/api/ui/custom";
interface ProcessStore { interface ProcessStore {
processes: Process[]; processes: Process[];
@ -86,7 +87,8 @@ function createProcessStore() {
const killProcess = async (pid: number) => { const killProcess = async (pid: number) => {
try { try {
update((state) => ({ ...state, isKilling: true })); 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) { if (success) {
await getProcesses(); await getProcesses();
} else { } else {