Advertisement
Guest User

Untitled

a guest
May 5th, 2017
366
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 9.92 KB | None | 0 0
  1. # System Variable
  2. # You can configure your recalbox from here
  3. # To set a variable, remove the first ; on the line
  4.  
  5.  
  6.  
  7. # ------------ A - System Options ----------- #
  8. # Uncomment the system.power.switch you use
  9. ;system.power.switch=ATX_RASPI_R2_6 # http://lowpowerlab.com/atxraspi/#installation
  10. ;system.power.switch=MAUSBERRY # http://mausberry-circuits.myshopify.com/pages/setup
  11. ;system.power.switch=REMOTEPIBOARD_2003 # http://www.msldigital.com/pages/support-for-remotepi-board-2013
  12. ;system.power.switch=REMOTEPIBOARD_2005 # http://www.msldigital.com/pages/support-for-remotepi-board-plus-2015
  13. ;system.power.switch=WITTYPI # http://www.uugear.com/witty-pi-realtime-clock-power-management-for-raspberry-pi
  14. ;system.power.switch=PIN56ONOFF # https://github.com/recalbox/recalbox-os/wiki/Add-a-start-stop-button-to-your-recalbox-(EN)
  15. ;system.power.switch=PIN56PUSH # https://github.com/recalbox/recalbox-os/wiki/Add-a-start-stop-button-to-your-recalbox-(EN)
  16. ;system.power.switch=PIN356ONOFFRESET # https://github.com/recalbox/recalbox-os/wiki/Add-a-start-stop-button-to-your-recalbox-(EN)
  17. ;system.power.switch=PIN356PUSHRESET # https://github.com/recalbox/recalbox-os/wiki/Add-a-start-stop-button-to-your-recalbox-(EN)
  18.  
  19. ## fbcp FrameBuffer Copy Program
  20. ## For small TFT screen on GPIO and SPI
  21. ## See https://github.com/recalbox/recalbox-os/wiki/Utility---Use-of-fbcp-for-small-TFT-screen-%28EN%29 for details
  22. ## Needed for Waveshare 3.2" 3.5" TFT screen, 2.8" Adafruit screen
  23. ## See https://github.com/recalbox/recalbox-os/wiki/TFT-Screen-SPI-Bus-%28EN%29
  24. ## for support and configuration details needed by /boot/config.txt
  25. system.fbcp.enabled=0
  26.  
  27. ## Recalbox Manager (http manager)
  28. system.manager.enabled=1
  29. ## 1 or 2, depending on the manager version you wish
  30. system.manager.version=1
  31.  
  32. ## Recalbox security
  33. # enforce security
  34. # samba password required
  35. # disable virtual gamepads
  36. system.security.enabled=0
  37.  
  38. ## Recalbox API (REST)
  39. system.api.enabled=0
  40.  
  41. ## Allow a specific resolution for ES only from the command : tvservice -m [MODE]
  42. ## Leave commented for the default usual behaviour
  43. ;system.es.videomode=CEA 4 HDMI
  44.  
  45. ## EmulationStation
  46. ### menu style
  47. ### default -> default all options menu
  48. ### none -> no menu except the game search menu
  49. ### bartop -> less menu, only needed for bartops
  50. emulationstation.menu=default
  51. ### Select a system to show on boot (use rom directory name) (string)
  52. emulationstation.selectedsystem=favorites
  53. ### Show the gamelist of the first or selected system on boot (0,1)
  54. emulationstation.bootongamelist=0
  55. ### Disable system view ES will boot and show ONLY the first or selected system (0,1)
  56. emulationstation.hidesystemview=0
  57. ### Parse Gamelists only. Show only games listed in gamelist.xml files (0,1)
  58. emulationstation.gamelistonly=0
  59. ### Force basicgameList view to be displayed, even if your game systems are scraped (0,1)
  60. emulationstation.forcebasicgamelistview=0
  61.  
  62. ## Emulator special keys
  63. ## default -> default all special keys
  64. ## nomenu -> cannot popup the emulator menu
  65. ## none -> no special keys in emulators
  66. system.emulators.specialkeys=default
  67.  
  68. ## Show or hide kodi in emulationstation (0,1)
  69. kodi.enabled=0
  70. ## Start kodi at launch (0,1)
  71. kodi.atstartup=0
  72. ## set x button shortcut (0,1)
  73. kodi.xbutton=0
  74.  
  75. ## Kodi can wait for a network component before starting
  76. ## waithost is the ip or hostname that must answer to a ping to validate the availability
  77. ## waittime is the maximum time waited when kodi boots
  78. ## if waitmode is required, kodi will not start if the component is not available
  79. ## if waitmode is wish, kodi will start if the component is not available
  80. ## if waitmode is not set or has another value, kodi will start immediately
  81. ;kodi.network.waitmode=required
  82. ;kodi.network.waittime=10
  83. ;kodi.network.waithost=192.168.0.50
  84.  
  85. # ------------ B - Network ------------ #
  86. ## Set system hostname
  87. system.hostname=RECALBOX
  88. ## Activate wifi (0,1)
  89. wifi.enabled=0
  90. ## Wifi SSID (string)
  91. ;wifi.ssid=new ssid
  92. ## Wifi KEY (string)
  93. ## after rebooting the recalbox, the "new key" is replace by a hidden value "enc:xxxxx"
  94. ## you can edit the "enc:xxxxx" value to replace by a clear value, it will be updated again at the following reboot
  95. ## Escape your special chars (# ; $) with a backslash : $ => \$
  96. ;wifi.key=new key
  97.  
  98. # secondary wifi (not configurable via the user interface)
  99. ;wifi2.ssid=new ssid
  100. ;wifi2.key=new key
  101.  
  102. # third wifi (not configurable via the user interface)
  103. ;wifi3.ssid=new ssid
  104. ;wifi3.key=new key
  105.  
  106. ## Samba share
  107. system.samba.enabled=1
  108. ### Virtual Gamepads
  109. system.virtual-gamepads.enabled=1
  110. ### SSH
  111. system.ssh.enabled=0
  112.  
  113. # ------------ C - Audio ------------ #
  114. ## Set the audio device (auto, hdmi, jack)
  115. audio.device=auto
  116. ## Set system volume (0..100)
  117. audio.volume=90
  118. ## Enable or disable system sounds in ES (0,1)
  119. audio.bgmusic=1
  120.  
  121.  
  122.  
  123. # -------------- D - Controllers ----------------- #
  124. # Enable support for standard bluetooth controllers
  125. controllers.bluetooth.enabled=1
  126.  
  127.  
  128. ## Please enable only one of these
  129. # -------------- D1 - PS3 Controllers ------------ #
  130. ##Enable PS3 controllers support
  131. controllers.ps3.enabled=1
  132. ## Choose a driver between bluez, official and shanwan
  133. ## bluez -> bluez 5 + kernel drivers, support official and shanwan sisaxis
  134. ## official -> sixad drivers, support official and gasia sisaxis
  135. ## shanwan -> shanwan drivers, support official and shanwan sisaxis
  136. controllers.ps3.driver=bluez
  137.  
  138.  
  139. # ------------ D2 - GPIO Controllers ------------ #
  140. ## GPIO Controllers
  141. ## enable controllers on GPIO with mk_arcarde_joystick_rpi (0,1)
  142. controllers.gpio.enabled=0
  143. ## mk_gpio arguments, map=1 for one controller, map=1,2 for 2 (map=1,map=1,2)
  144. controllers.gpio.args=map=1,2
  145.  
  146.  
  147. ## DB9 Controllers
  148. ## Enable DB9 drivers for atari, megadrive, amiga controllers (0,1)
  149. controllers.db9.enabled=0
  150. ## db9 arguments
  151. controllers.db9.args=map=1
  152.  
  153. ## Gamecon controllers
  154. ## Enable gamecon controllers, for nes, snes psx (0,1)
  155. controllers.gamecon.enabled=0
  156. ## gamecon_args
  157. controllers.gamecon.args=map=1
  158.  
  159. ## XGaming's XArcade Tankstik and other compatible devices
  160. controllers.xarcade.enabled=1
  161.  
  162.  
  163.  
  164. # ------------ F - Language and keyboard ------------ #
  165. ## Set the language of the system (fr_FR,en_US,en_GB,de_DE,pt_BR,es_ES,it_IT,eu_ES,tr_TR,zh_CN)
  166. system.language=de_DE
  167. ## set the keyboard layout (fr,en,de,us,es)
  168. ;system.kblayout=de
  169. ## Set you local time
  170. ## Select your timezone from : ls /usr/share/zoneinfo/ (string)
  171. ;system.timezone=Europe/Paris
  172.  
  173.  
  174.  
  175. # ------------ G - UPDATES ------------ #
  176. ## Automatically check for updates at start (0,1)
  177. updates.enabled=1
  178. # Update type : default to stable
  179. # set to unstable at your own risk to get the development version.
  180. updates.type=unstable
  181.  
  182.  
  183. # ------------ H - HERE IT IS - GLOBAL EMULATOR CONFIGURATION ------------ #
  184. ## The global value will be used for all emulators, except if the value
  185. ## is redefined in the emulator
  186.  
  187. ## Set game resolution for emulators
  188. ## select your mode from the command : tvservice -m [MODE]
  189. ## CEA 5 HDMI : 1920x1080 @ 60Hz 16:9, clock:74MHz interlaced
  190. ## CEA 4 HDMI : 1280x720 @ 60Hz 16:9, clock:74MHz progressive
  191. ## use 'default' for using the default resolution
  192. ## (string)
  193. global.videomode=DMT 35 HDMI
  194.  
  195. ## Shader set
  196. ## Automatically select shaders for all systems
  197. ## (none, retro, scanlines)
  198. global.shaderset=none
  199.  
  200. ## Once enabled, your screen will be cropped, and you will have a pixel perfect image (0,1)
  201. global.integerscale=1
  202.  
  203. ## Set gpslp shader for all emulators (prefer shadersets above). Absolute path (string)
  204. global.shaders=
  205.  
  206. ## Set ratio for all emulators (auto,4/3,16/9,16/10,custom)
  207. global.ratio=4/3
  208.  
  209. ## Set smooth for all emulators (0,1)
  210. global.smooth=1
  211.  
  212. ## Set rewind for all emulators (0,1)
  213. global.rewind=1
  214.  
  215. ## Set autosave/load savestate for all emulators (0,1)
  216. global.autosave=1
  217.  
  218. ## Enable retroarchievements (0,1)
  219. ## Set your www.retroachievements.org username/password
  220. ## Escape your special chars (# ; $) with a backslash : $ => \$
  221. global.retroachievements=0
  222. global.retroachievements.hardcore=0
  223. global.retroachievements.username=
  224. global.retroachievements.password=
  225.  
  226. ## Set retroarch input driver (auto, udev, sdl2)
  227. ## If you don't have issues with your controllers, let auto
  228. global.inputdriver=auto
  229.  
  230. ## If you do not want recalboxOS to generate the configuration for all emulators (string)
  231. ;global.configfile=/path/to/my/configfile.cfg
  232.  
  233. # ------------ I - EMULATORS CHOICES ----------- #
  234. ## You can override the global configuration here
  235. ## Here is the snes example
  236. ;snes.videomode=CEA 4 HDMI
  237. snes.core=snes9x_next
  238. ;snes.shaders=/recalbox/share/shaders/shaders_glsl/mysnesshader.gplsp
  239. ;snes.ratio=16/9
  240. ;snes.smooth=0
  241. ;snes.rewind=1
  242. ;snes.autosave=0
  243. ;snes.emulator=libretro
  244. ;snes.integerscale=0
  245. ## If you do not want recalboxOS to generate the configuration for the emulator :
  246. ;snes.configfile=/path/to/my/configfile.cfg
  247.  
  248. ## Default cores for RPi3
  249. snes.core=snes9x_next
  250. gba.core=mgba
  251. mame.core=mame078
  252. nes.core=fceunext
  253.  
  254. ## NeoGeo emulator
  255. ## You can use pifba or a libretro core (fba2x,libretro)
  256. neogeo.emulator=libretro
  257. ## If you set libretro as neogeo.emulator, the line below sets the retroarch core (fba,imame4all)
  258. neogeo.core=fba
  259.  
  260. ## N64 emulator is configured to display a screen with a 640x480 resolution (native n64 resolution)
  261. ## So you must use one of these video modes (DMT 4 HDMI,CEA 1 HDMI).
  262. ## If your screen is not compatible with one of these video modes, please check the recalbox's wiki.
  263. n64.videomode=DMT 4 HDMI
  264. ## If you are using a CRT screen, please change the setting above with this one :
  265. # n64.videomode=default
  266.  
  267. ## Dreamcast emulator
  268. ## Like N64, such a CPU intensive emulator needs a small resolution
  269. ## Consider DMT 4 HDMI or DMT 9 HDMI. Mode 9 is selected for a better screen compatibility
  270. dreamcast.videomode=DMT 4 HDMI
  271.  
  272. ## Configurations generated by Recalbox
  273. system.es.menu=default
  274. controllers.xboxdrv.enabled=0
  275. controllers.xboxdrv.nbcontrols=2
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement