Skip to content

Commit e310aed

Browse files
authored
feat: added Outlook and Vivaldi process icon mappings
* added OUTLOOK to Mail & added Vivaldi browser mapping * fixed unterminated string @ vivaldi --------- Co-authored-by: xd999e <>
1 parent a69f445 commit e310aed

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/lib/icon_loader.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import BrandTeams from "@tabler/icons-svelte/icons/brand-teams";
1919
iconMap.push({ appNames: ["ms-teams"], icon: BrandTeams });
2020

2121
import Mail from "@tabler/icons-svelte/icons/mail";
22-
iconMap.push({ appNames: ["airmail", "olk"], icon: Mail });
22+
iconMap.push({ appNames: ["airmail", "olk", "OUTLOOK"], icon: Mail });
2323

2424
import BrandArc from "@tabler/icons-svelte/icons/brand-arc";
2525
iconMap.push({ appNames: ["arc"], icon: BrandArc });
@@ -30,6 +30,9 @@ iconMap.push({
3030
icon: BrandChrome
3131
});
3232

33+
import BrandVivaldi from "@tabler/icons-svelte/icons/brand-vivaldi";
34+
iconMap.push({ appNames: ["vivaldi"], icon: BrandVivaldi });
35+
3336
import BrandFirefox from "@tabler/icons-svelte/icons/brand-firefox";
3437
iconMap.push({ appNames: ["firefox"], icon: BrandFirefox });
3538

0 commit comments

Comments
 (0)