Change Logo

NocturnalJaz

New Member
I want to change the Obs Logo in the panel without changing the Yami theme, does anyone know the path to change it or the file? i let an image to show what logo i'm talking about
 

Attachments

  • Logo.PNG
    Logo.PNG
    3.4 KB · Views: 18

Suslik V

Active Member
I think you looking for this (can be added at the end of the theme .qss file that inherits any other theme) :
Code:
QWidget {
    qproperty-windowIcon: url(./PhosL/phos-main-icon.png);
}
"./PhosL/phos-main-icon.png" - is relative path to new icon image file.
At least, it was possible for Qt v5.x (Examples: https://obsproject.com/forum/resources/categories/themes.10/)

If it doesn't works for modern OBS - then only recompile from source code can help you.
Source code (image file itself):
 
Top