first commit

This commit is contained in:
2026-03-06 13:24:50 +05:30
commit 8715ebafe8
8 changed files with 83 additions and 0 deletions

15
main.py Normal file
View File

@@ -0,0 +1,15 @@
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()