Skip to content

YourBoyRory/PyQt-Adwaita

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 

Repository files navigation

PyQt-Adwaita

Simple style sheet to make PyQt look like Sorta like Adwaita
make sure to add setObjectName("Frame") to make sure the window color is correct

class MyFrame(QWidget):
  def __init__(self):
    self.setObjectName("Frame")
    with open("/path/to/Adwaita-Dark.qss", "r") as f:
      self.setStyleSheet(f.read())