-
Notifications
You must be signed in to change notification settings - Fork 7
/
main.py
56 lines (53 loc) · 1.32 KB
/
main.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
import sys
from subprocess import Popen, PIPE, STDOUT
import os
import src.arabic
import src.bsod
import src.click
import src.edge
import src.errors
import src.familyguy
import src.fastmouse
import src.files
import src.gtav
import src.satisfying
import src.subway
import src.wallpaper
import src.youtube
import src.sigma
import src.uwuvlc
python_file = sys.argv[1]
if python_file == "verify":
print("success")
elif python_file == "arabic":
src.arabic._start_()
elif python_file == "sigma":
src.sigma._start_("src/sigma.mp4")
elif python_file == "outro":
src.sigma._start_("src/outro.mov")
elif python_file == "bsod":
src.bsod._start_()
elif python_file == "click":
src.click._start_()
elif python_file == "edge":
src.edge._start_()
elif python_file == "errors":
src.errors._start_()
elif python_file == "familyguy":
src.familyguy._start_()
elif python_file == "fastmouse":
src.fastmouse._start_()
elif python_file == "files":
src.files._start_()
elif python_file == "gtav":
src.gtav._start_()
elif python_file == "satisfying":
src.satisfying._start_()
elif python_file == "subway":
src.subway._start_()
elif python_file == "wallpaper":
src.wallpaper._start_()
elif python_file == "youtube":
src.youtube._start_()
else:
print(f"Error: '{python_file}' is not a recognized script.")