Skip to main content

Blur PySide, Tkinter, etc windows.

Project description

You can install it with pip:

python -m pip install BlurWindow

Preview:

https://i.imgur.com/sBNxXQE.png

Parameters:

#HWND = PID
#Acrylic = True/False #For Acrylic Design (lags)
#hexColor = Background color, False for nothing
#Dark = White icons

blur(HWND,hexColor=False,Acrylic=False,Dark=False)

#in windows 7 or older: (scroll down for image)
Win7Blur(HWND)

Example:

import sys
from PySide2.QtWidgets import *
from PySide2.QtCore import *

from BlurWindow.blurWindow import blur


class MainWindow(QWidget):
    def __init__(self):
        super(MainWindow, self).__init__()
        self.setAttribute(Qt.WA_TranslucentBackground)
        self.resize(500, 400)

        blur(self.winId(),Dark=True)

        self.setStyleSheet("background-color: rgba(0, 0, 0, 0)")


if __name__ == '__main__':
    app = QApplication(sys.argv)
    mw = MainWindow()
    mw.show()
    sys.exit(app.exec_())

Windows 7:

https://i.imgur.com/ANA0gzF.png

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

BlurWindow-1.1.2.tar.gz (3.0 kB view hashes)

Uploaded Source

Built Distribution

BlurWindow-1.1.2-py3-none-any.whl (3.2 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page