Files
wydt/main.py
2026-03-06 13:24:50 +05:30

16 lines
273 B
Python

import subprocess
from screenshot_backend import get_backend
from backends.spectacle import SpectacleBackend
def main():
print("Hello from wydt!")
backend = get_backend()
path = backend.active_window()
print(path)
if __name__ == "__main__":
main()