'Buster of World'에 해당되는 글 449건
- 2023.06.16 사랑의 썰물 기타연주..
- 2023.06.16 리눅스 daum POE 실행 시켜주는 스크립트
- 2023.06.16 yay 캐시 클리어
- 2023.05.05 path of exile 군단 버스 경험치 아이템
카테고리 없음2023. 6. 16. 23:52
카테고리 없음2023. 6. 16. 00:55
반응형
#!/usr/bin/env python3
from tkinter import *
import subprocess
import os
root = Tk()
root.title("리눅스 POE 게임 스타터")
root.geometry("800x200+500+1500")
def exit_windows():
root.destroy()
txt = Text(root, width=160, height=10)
txt.pack()
scr_txt1 = txt.pack()
# print("srctxt",scr_txt1)
def write_text():
scr_txt2= txt.get("1.0","end")
result = scr_txt2[24:]
result = "nohup python3 "+"./fakeDaumgameStarter22.py "+"'daumgamestarter://"+result+"'"+">/dev/null 2>&1"
print("입력받은 텍스트",result)
# os.system('cd')
# os.system('pwd')
os.system(result)
exit_windows()
btn = Button(root, text="게임시작",command=write_text)
btn2 = Button(root, text="EXIT",command=exit_windows)
btn.pack()
btn2.pack()
root.mainloop()
반응형
카테고리 없음2023. 6. 16. 00:51
카테고리 없음2023. 5. 5. 18:09