Skip to content

Commit

Permalink
📂
Browse files Browse the repository at this point in the history
  • Loading branch information
imvickykumar999 committed Nov 15, 2023
1 parent 710296d commit 3c40d8d
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 35 deletions.
32 changes: 0 additions & 32 deletions Projects/TkinterGUI/ADB_GUI.py

This file was deleted.

File renamed without changes.
File renamed without changes.
File renamed without changes
6 changes: 3 additions & 3 deletions Projects/TkinterGUI/ScrCpy_GUI.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def voldown():
def submit(x):
try:
if x == '':
os.system('keyevents.json')
os.system('Executable/keyevents.json')
else:
os.system(f'adb -s {ip} shell input keyevent {x}')
except Exception as e:
Expand All @@ -71,12 +71,12 @@ def fun():
rely4 = 0.8
rely5 = 0.9

bg = PhotoImage(file = "wallpaper.png")
bg = PhotoImage(file = "Executable/wallpaper.png")
label = Label( root, image = bg)
label.place(x = 0, y = 0)

num_list = Listbox(root, height=15, width=30)
with open('keyevents.json') as f:
with open('Executable/keyevents.json') as f:
data = json.load(f)

for i in data['key_events']:
Expand Down

0 comments on commit 3c40d8d

Please sign in to comment.