add print()

This commit is contained in:
Daniel Langbein 2022-05-23 13:37:07 +02:00
parent dcba1f6609
commit a983e7f76f

View File

@ -44,8 +44,10 @@ def rotate_clockwise():
def rotate(screen: Screen, orientation):
print(f"Rotating {screen.name} ...")
Xrandr.rotate(screen.name, orientation)
for device in screen.devices:
print(f" Mapping {device.name} to {screen.name}")
try:
Xinput.map_to_output(device.name, screen.name)
except Exception as e: