Skip to content

hPyT v1.1.2

Compare
Choose a tag to compare
@Zingzy Zingzy released this 18 Feb 09:46
· 52 commits to main since this release
14e2f72

CHANGELOG

v1.1.2

  • Add window flashing support
  • Add window opacity support
  • Add support for PyGTK

CODE SAMPLES

Opacity

opacity.set(window, 0.5) # sets the window opacity to 50%
# opacity.set(window, 1) # resets the window opacity to 100%

Opacity 0.5 preview

Flashing Window

window_flash.flash(window, 10) # flashes the window 10 times
# window_flash.stop(window) # stops the flashing immediately

Flashing Window