-
Notifications
You must be signed in to change notification settings - Fork 6
/
retropiebatch.bat
27 lines (21 loc) · 1001 Bytes
/
retropiebatch.bat
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
@echo off
python crt_pi_configs.py mame2003 1920 1080
python crt_pi_configs.py fbalpha 1920 1080
python crt_pi_configs.py consoles 1920 1080
python -c "import crt_pi_configs; crt_pi_configs.createZip(False,1920,1080)"
python crt_pi_configs.py mame2003 1366 768
python crt_pi_configs.py fbalpha 1366 768
python crt_pi_configs.py consoles 1366 768
python -c "import crt_pi_configs; crt_pi_configs.createZip(False,1366,768)"
python crt_pi_configs.py mame2003 1280 720
python crt_pi_configs.py fbalpha 1280 720
python crt_pi_configs.py consoles 1280 720
python -c "import crt_pi_configs; crt_pi_configs.createZip(False,1280,720)"
python crt_pi_configs.py mame2003 1280 1024
python crt_pi_configs.py consoles 1280 1024
python crt_pi_configs.py fbalpha 1280 1024
python -c "import crt_pi_configs; crt_pi_configs.createZip(False,1280,1024)"
python crt_pi_configs.py mame2003 curvature 0
python crt_pi_configs.py fbalpha curvature 0
python -c "import crt_pi_configs; crt_pi_configs.createZip(True)
pause