small adjustment

This commit is contained in:
Abdenasser 2024-11-02 02:37:56 +01:00
parent 30b2567f28
commit 4ee67163d2
2 changed files with 25 additions and 4 deletions

View File

@ -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

View File

@ -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("<svg", `<svg fill="${color}"`);
return `data:image/svg+xml;base64,${btoa(svgWithColor)}`;
}
}
// If no company icon found, fall back to original implementation
const cleanName = name
// Remove common app suffixes
.replace(/\.(app|exe)$/i, "")
// Replace separators with spaces
.replace(/[-_./\\]/g, " ")
// Get first word, trim, and lowercase
.split(" ")[0]
.trim()
.toLowerCase();
// Convert to SimpleIcons format (capitalize first word)
const formattedName =
cleanName.charAt(0).toUpperCase() + cleanName.slice(1);
const iconKey = `si${formattedName}`;