mirror of
https://github.com/kunkunsh/kunkun-ext-neohtop.git
synced 2025-04-03 17:36:41 +00:00
small adjustment
This commit is contained in:
parent
30b2567f28
commit
4ee67163d2
@ -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
|
||||
|
@ -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}`;
|
||||
|
Loading…
x
Reference in New Issue
Block a user