Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
moku3u authored Jul 9, 2022
0 parents commit d74f591
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions fn.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
import keyboard
import pyautogui
from tkinter import *
import time

loop = Tk()

def process():
keyboard.press("esc")
time.sleep(0.1)
pyautogui.click(55, 1015)
pyautogui.click(260, 1015)
time.sleep(0.1)
pyautogui.click(260, 1015)

keyboard.add_hotkey("F1", process)

loop.mainloop()

0 comments on commit d74f591

Please sign in to comment.