15 lines
257 B
Python
15 lines
257 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()
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|