'Buster of World'에 해당되는 글 448건

  1. 2023.06.16 리눅스 daum POE 실행 시켜주는 스크립트 312
  2. 2023.06.16 yay 캐시 클리어 9
  3. 2023.05.05 path of exile 군단 버스 경험치 아이템 5
  4. 2022.05.08 wine serum 설치 방법 8
카테고리 없음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()

반응형
Posted by Dream Come True
카테고리 없음2023. 6. 16. 00:51
반응형

yay -Scc

 

 

캐시 디렉터리: /var/cache/pacman/pkg/
:: 캐시에서 모든 파일을 제거하시겠습니까? [y/N] y
캐시에서 모든 파일 제거 중...

데이터베이스 디렉터리: /var/lib/pacman/
:: 사용하지 않는 저장소를 제거하시겠습니까? [Y/n] y
사용하지 않는 동기화 저장소 제거 중...

빌드 디렉터리: /home/buster/.cache/yay
:: 캐시에 있는 AUR 패키지를 모두 제거하시겠습니까? [Y/n] y
캐시에서 AUR 패키지 제거하는 중...

 

반응형
Posted by Dream Come True
카테고리 없음2023. 5. 5. 18:09
반응형

POE 군단 버스 경험치 아이템

 

반응형
Posted by Dream Come True
카테고리 없음2022. 5. 8. 13:49
반응형

리눅스 wine 에서 serum 설치 방법

 

wintricks 에서

gdiplus

mfc420

 

 

winecfg 에서

d2d1 -> 비활성화 (disable)

 

 

저같은 경우는 칼라로 사용 하기도 하지만 yabrigectl 로 추가 시켜 네이티브 리눅스 VST 처럼 사용 하면 정말 편리 합니다.

 

 

 

 

마이크가 도착 하면 youtube 로 설명 올리 겠습니다.

 

반응형
Posted by Dream Come True