wayland removed

This commit is contained in:
N0\A
2025-11-07 09:31:14 +01:00
parent 69b0fb3226
commit aa2c23537c
4 changed files with 13 additions and 153 deletions

View File

@@ -69,7 +69,12 @@ def main():
dukto_handler.initialize()
dukto_handler.say_hello()
pet.position_bottom_right()
# bottom right corner
screen_geometry = app.primaryScreen().availableGeometry()
pet_geometry = pet.frameGeometry()
x = screen_geometry.width() - pet_geometry.width()
y = screen_geometry.height() - pet_geometry.height()
pet.move(x, y)
pet.show()