Skip to content

Releases: littlewhitecloud/TranslucentTB

Release v0.0.4

04 Jul 08:01
bc9a5d7
Compare
Choose a tag to compare

Fix taskbar sometime will turn black.
Improve the document

Full Changelog: v0.0.3...v0.0.4

Release v0.0.3

01 Jul 04:45
09257d8
Compare
Choose a tag to compare

UI

image

from translucenttb import Settings
example = Settings()
example.mainloop()

Fun Example:

from time import sleep

from translucenttb import blur


def colorful():
    hexdict = [
        "#FF0000",
        "#FF3030",
        "#FF5656",
        "#FF7456",
        "#FFA500",
        "#FF7438",
        "#FF8956",
        "#FFAB56",
        "#FFB871",
        "#FFFF00",
        "#FFCD71",
        "#FFE071",
        "#FFF571",
        "#F4FF71",
        "#D8FF71",
        "#C8FF71",
        "#008000",
        "#9FF65B",
        "#00FFFF",
        "#79F65B",
        "#5FF65B",
        "#5BF67D",
        "#5BF69C",
        "#5BF67D",
        "#5BF6C5",
        "#5BF6DC",
        "#2AFFDC",
        "#2AFCFF",
        "#2AC5FF",
        "#2AADFF",
        "#2A87FF",
        "#2A6BFF",
        "#2A49FF",
        "#0000FF",
        "#2A35FF",
        "#3A2AFF",
        "#502AFF",
        "#602AFF",
        "#800080",
    ]

    for hexcolor in hexdict:
        blur("noeffect", hexcolor)
        sleep(0.1)


colorful()
2023-07-01.12-40-10.mp4

Release v0.0.2

01 Jul 02:54
0852cd0
Compare
Choose a tag to compare

fix typos
fix pip install error

Full Changelog: v0.0.1...v0.0.2

Release v0.0.1

30 Jun 12:45
f18e80e
Compare
Choose a tag to compare

TranslucentTB

This is a python version TranslucentTB maybe with tkinter and ctypes

Clear

image

Noeffect

image

Blur

image

Acrylic

image

Usage

from translucenttb import blur # import the blur function
blur(blurtype="acrylic") # for example acrylic
# choose one type from ("clear", "noeffect", "blur", "acrylic")

Pypi

pip install translucenttb

Full Changelog: https://github.com/littlewhitecloud/TranslucentTB/commits/v0.0.1