mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
feat: show favicons as bookmarks icons
We replaced the default bookmarks plugin icon with Google's favicon API to fetch and display favicons for each bookmark from their corresponding websites.
This commit is contained in:
parent
ed5373653d
commit
d1ebaaa42c
1 changed files with 2 additions and 2 deletions
|
|
@ -68,7 +68,7 @@ public class Main : ISettingProvider, IPlugin, IReloadable, IPluginI18n, IContex
|
|||
{
|
||||
Title = c.Name,
|
||||
SubTitle = c.Url,
|
||||
IcoPath = @"Images\bookmark.png",
|
||||
IcoPath = $"https://www.google.com/s2/favicons?domain={c.Url}&sz=64",
|
||||
Score = BookmarkLoader.MatchProgram(c, param).Score,
|
||||
Action = _ =>
|
||||
{
|
||||
|
|
@ -90,7 +90,7 @@ public class Main : ISettingProvider, IPlugin, IReloadable, IPluginI18n, IContex
|
|||
{
|
||||
Title = c.Name,
|
||||
SubTitle = c.Url,
|
||||
IcoPath = @"Images\bookmark.png",
|
||||
IcoPath = $"https://www.google.com/s2/favicons?domain={c.Url}&sz=64",
|
||||
Score = 5,
|
||||
Action = _ =>
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue