first commit

This commit is contained in:
2025-11-01 06:00:52 +05:30
parent 6a49b604a7
commit ae7194a9f2
2110 changed files with 382375 additions and 0 deletions

23
two.py Normal file
View File

@@ -0,0 +1,23 @@
import pyautogui
import time
def open_rustdesk_gui():
print("Opening RustDesk...")
# Move to bottom-left (adjust this if needed)
pyautogui.moveTo(10, pyautogui.size().height - 10)
time.sleep(0.5)
# Click the menu/search/start button
pyautogui.click()
time.sleep(1)
# Type 'ru' or 'rustdesk'
pyautogui.write('rus', interval=0.1)
time.sleep(1)
# Press Enter to launch it
pyautogui.press('enter')
open_rustdesk_gui()