Skip to content

Commit

Permalink
gitignoretst
Browse files Browse the repository at this point in the history
  • Loading branch information
yohanesokta committed Aug 4, 2023
1 parent 707675a commit 8078bc8
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
/.vscode/*
/__pycache__/*
.vscode
/__pycache__
Binary file modified __pycache__/runner.cpython-311.pyc
Binary file not shown.
Binary file modified __pycache__/user_data.cpython-311.pyc
Binary file not shown.
2 changes: 1 addition & 1 deletion app.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import psutil
from user_data import *
import os
from runner import mainRun,OtgRunner,OpenFolder
from runner import *

# INTIALIANZING
window = customtkinter.CTk()
Expand Down
4 changes: 2 additions & 2 deletions runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

def mainRun(args,window):
global home
rec_path = home + '\\videos\\MirrorRec\\MirrorRec_' + str(time.time())
rec_path = home + str('\\videos\\MirrorRec\\MirrorRec_') + str(time.time())
lib = 'User'
exec = ['scrcpy.exe']
if args.get(lib,'fullscreen') == 'True':
Expand Down Expand Up @@ -53,7 +53,7 @@ def mainRun(args,window):
exec += ['-r',rec_path + '.mp4']
case 'Record (.mkv)':
exec += ['-r',rec_path + '.mkv']
print(exec)

window.withdraw()
try:
grepOut = subprocess.check_output(exec, shell=True,cwd='Runtime')
Expand Down
2 changes: 1 addition & 1 deletion user_data.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import configparser
from pathlib import Path
path = str(Path.home()) + '//Documents//YhanzC Product//'
path = str(Path.home()) + '\\Documents\\YhanzC Product\\'
CFpraser = configparser.ConfigParser()

def load_data():
Expand Down

0 comments on commit 8078bc8

Please sign in to comment.