Anshul Garg
Anshul Garg

Reputation: 11

Is there any way to add a logo of the GUI application made by using Eel Python?

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

Answers (2)

Fabi0
Fabi0

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

Haris Avicenna
Haris Avicenna

Reputation: 11

Add

<link rel="shortcut icon" type="image/x-icon" href="path_to_icon">

to the head tag in the HTML

Upvotes: 1

Related Questions