Advertisement
CapNinja

Untitled

Jan 30th, 2020
1,414
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.86 KB | None | 0 0
  1. # --------------------------------------------------------------------
  2. # Skyscraper by Lars Muldjord (https://github.com/muldjord/skyscraper)
  3. # --------------------------------------------------------------------
  4.  
  5. # This is an example config file for use with Skyscraper. Use it as a template for creating
  6. # your own. If you copy this file to 'config.ini' it will be used per default.
  7. # You can always copy config.ini.example to a filename of your choice and make Skyscraper
  8. # use it with the '-c' command line option.
  9.  
  10. # You can have several platform sections in one config file. Further down is an example of
  11. # a generic platform setup. Check '--help' for more info on supported platforms.
  12.  
  13. # You can have several scraping module sections in one config file. Further down is an example
  14. # of a generic module setup. Check '--help' for more info on supported modules.
  15.  
  16. # Remember that most of these settings can also be set as command line options. Doing so
  17. # will overrule the options seen here except for the scraping module configs which
  18. # overrules everything else.
  19. # Platform specific configs overrules main configs.
  20.  
  21. # Uncomment the sections and lines you wish to use:
  22.  
  23. [main]
  24. ##Setting input, gamelist or media folder here, will automatically append '/[platform]' to path.
  25. ##If you need better control, use the same variables under a [<platform>] section instead.
  26. #inputFolder="/home/pi/RetroPie/roms"
  27. #gamelistFolder="/home/pi/RetroPie/roms"
  28. #mediaFolder="/home/pi/RetroPie/roms"
  29. #cacheFolder="/home/pi/.skyscraper/cache"
  30. #cacheResize="false"
  31. #cacheCovers="true"
  32. #cacheScreenshots="true"
  33. #cacheWheels="true"
  34. #cacheMarquees="true"
  35. #importFolder="/home/pi/.skyscraper/import"
  36. #unpack="false"
  37. #frontend="emulationstation"
  38. #emulator=""
  39. #launch=""
  40. #videos="false"
  41. #videoSizeLimit="42"
  42. #symlink="false"
  43. #brackets="true"
  44. #maxLength="10000"
  45. #threads="2"
  46. #pretend="false"
  47. #unattend="false"
  48. #unattendSkip="false"
  49. #interactive="false"
  50. #forceFilename="false"
  51. #verbosity="1"
  52. #skipped="false"
  53. #maxFails="30"
  54. #lang="en"
  55. #region="wor"
  56. #langPrios="en,de,es"
  57. #regionPrios="eu,us,ss,uk,wor,jp"
  58. #minMatch="0"
  59. #artworkXml="artwork.xml"
  60. #relativePaths="false"
  61. #addExtensions="*.zst"
  62. #hints="false"
  63. #subdirs="true"
  64. #spaceCheck="true"
  65. #scummIni="/full/path/to/scummvm.ini"
  66.  
  67. #[<PLATFORM, eg 'amiga'>]
  68. #inputFolder="/home/pi/RetroPie/roms/amiga"
  69. #gamelistFolder="/home/pi/RetroPie/roms/amiga"
  70. #mediaFolder="/home/pi/RetroPie/roms/amiga/media"
  71. #cacheFolder="/home/pi/.skyscraper/cache/amiga"
  72. #cacheResize="false"
  73. #cacheCovers="true"
  74. #cacheScreenshots="true"
  75. #cacheWheels="true"
  76. #cacheMarquees="true"
  77. #importFolder="/home/pi/.skyscraper/import/amiga"
  78. #unpack="false"
  79. #emulator=""
  80. #launch=""
  81. #videos="false"
  82. #videoSizeLimit="42"
  83. #symlink="false"
  84. #brackets="true"
  85. #lang="en"
  86. #region="wor"
  87. #langPrios="en,de,es"
  88. #regionPrios="eu,us,ss,uk,wor,jp"
  89. #minMatch="0"
  90. #maxLength="10000"
  91. #threads="2"
  92. #startAt="filename"
  93. #endAt="filename"
  94. #pretend="false"
  95. #unattend="false"
  96. #unattendSkip="false"
  97. #interactive="false"
  98. #forceFilename="false"
  99. #verbosity="1"
  100. #skipped="false"
  101. #artworkXml="artwork.xml"
  102. #relativePaths="false"
  103. #extensions="*.zip *.uae *.adf"
  104. #addExtensions="*.zst *.rom"
  105. #subdirs="true"
  106.  
  107. #[<FRONTEND, eg 'pegasus'>]
  108. #artworkXml="artwork.xml"
  109. #emulator=""
  110. #launch=""
  111. #gamelistFolder="/home/pi/RetroPie/roms/amiga"
  112. #mediaFolder="/home/pi/RetroPie/roms/amiga/media"
  113. #skipped="false"
  114. #brackets="true"
  115. #videos="false"
  116. #symlink="false"
  117. #startAt="filename"
  118. #endAt="filename"
  119. #unattend="false"
  120. #unattendSkip="false"
  121. #forceFilename="false"
  122. #verbosity="1"
  123. #maxLength="10000"
  124.  
  125. #[<SCRAPING MODULE, eg 'screenscraper'>]
  126. #userCreds="user:password"
  127. #threads="2"
  128. #minMatch="0"
  129. #maxLength="50000"
  130. #interactive="false"
  131. #cacheCovers="true"
  132. #cacheScreenshots="true"
  133. #cacheWheels="true"
  134. #cacheMarquees="true"
  135. #videos="false"
  136. #videoSizeLimit="42"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement