Reputation: 11
I am building an GUI application by using Eel Python. The first thing I noticed that - By default the application has chrome icon that I have to change it. But I didn't find any method to do it. So Is their any way to change the icon of the application?
Upvotes: 1
Views: 1992
Reputation: 169
Just use the normal way to add an icon in html, this automatically adds the Icon to your Eel application.
See this Answer here.
Upvotes: 0
Reputation: 11
Add
<link rel="shortcut icon" type="image/x-icon" href="path_to_icon">
to the head tag in the HTML
Upvotes: 1