From 4ee67163d2311a627fb5344a5554acca7f129c03 Mon Sep 17 00:00:00 2001 From: Abdenasser Date: Sat, 2 Nov 2024 02:37:56 +0100 Subject: [PATCH] small adjustment --- src-tauri/Cargo.toml | 1 + src/lib/components/ProcessTable.svelte | 28 ++++++++++++++++++++++---- 2 files changed, 25 insertions(+), 4 deletions(-) diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index d8eb5cf..4764451 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -25,3 +25,4 @@ codegen-units = 1 # Compile crates one after another so the compiler ca lto = "fat" # More aggressive link-time optimization opt-level = 3 # Optimize for maximum performance strip = true # Remove debug symbols +incremental = false # Disable incremental compilation diff --git a/src/lib/components/ProcessTable.svelte b/src/lib/components/ProcessTable.svelte index 301fa47..5fe0c45 100644 --- a/src/lib/components/ProcessTable.svelte +++ b/src/lib/components/ProcessTable.svelte @@ -31,17 +31,37 @@ } function getIconForProcess(name: string): string { + // First try with com.company.something pattern + if (name.startsWith("com.")) { + const companyName = name.replace(/^com\.([^.]+)\..*$/, "$1"); + const formattedCompanyName = + companyName.charAt(0).toUpperCase() + companyName.slice(1); + const companyIconKey = `si${formattedCompanyName}`; + const companyIcon = + SimpleIcons[companyIconKey as keyof typeof SimpleIcons]; + + if (companyIcon) { + // Use theme color instead of brand color + const color = getComputedStyle(document.documentElement) + .getPropertyValue("--text") + .trim(); + const svg = + typeof companyIcon === "object" && "svg" in companyIcon + ? companyIcon.svg + : ""; + const svgWithColor = svg.replace("