config.txt 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. // - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  2. // Configuration for pico-8
  3. //
  4. // config.txt is read on startup and saved on exit.
  5. // To generate the default config.txt, delete this file.
  6. //
  7. // - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  8. // :: Video Settings
  9. window_size 0 0 // window width, height
  10. screen_size 0 0 // screen width, height (stretched to window)
  11. show_fps 0 // Draw frames per second in the corner
  12. // :: Window Settings
  13. windowed 0 // 1 to start up in windowed mode
  14. window_position -1 -1 // x and y position of window, or -1, -1 to let the window manager decide
  15. frameless 0 // 1 to use a window with no frame
  16. fullscreen_method 0 // 0 maximized window (linux) 1 borderless desktop-sized window 2 fullscreen
  17. // :: System Settings
  18. foreground_sleep_ms 1 // number of milliseconds to sleep each frame. Try 10 to conserve battery power
  19. background_sleep_ms 20 // number of milliseconds to sleep each frame when running in the background
  20. sessions 4 // number of times program has been run
  21. // (scancode) hold this key down and left-click to simulate right-click
  22. rmb_key 0 // 0 for none 226 for LALT
  23. // 0:off 1: ignore SDL_TEXTINPUT and use SDL_GetKeyboardState instead (mapped to a US layout)
  24. emulate_textinput 1
  25. // Desktop for saving screenshots etc. Defaults to $HOME/Desktop
  26. desktop_path
  27. // :: Audio Settings
  28. sound_volume 256 // 0..256
  29. music_volume 256 // 0..256
  30. mix_buffer_size 1024 // usually 1024. Try 2048 if you get choppy sound
  31. // ::
  32. version 0.1.11g
  33. // Location of pico-8's root folder
  34. root_path /home/cpi/.lexaloffle/pico-8/carts/
  35. // Location of cartridge save data
  36. cdata_path /home/cpi/.lexaloffle/pico-8/cdata/
  37. // Specify which player index joystick control begins at (0..7)
  38. joystick_index 0
  39. // Custom keyboard scancodes for buttons. player0 0..6, player1 0..5
  40. button_keys 0 0 0 0 13 14 0 0 0 0 0 0 0
  41. // Play notes as they are plotted in frequency mode
  42. live_notes 0
  43. // iff 1: when using keyboard cursor, snap to closest pixel / map cel
  44. cursor_snap 0
  45. // maximum length of gif in seconds (1..120, default 8)
  46. gif_len 8
  47. // 0 classic 1 dark blue background in code editor
  48. gui_theme 0
  49. // scale of screenshots and gifs // 2 means 256x256
  50. screenshot_scale 3
  51. gif_scale 2
  52. // when 1 can enter glyphs using shift-A..Z
  53. shift_glyphs 1
  54. // 0 for off. 1 to notify whenever unsaved changes are backed up
  55. show_backup_messages 1
  56. // 0 for off. 1 to allow control of a cart's framerate due to host machine's cpu capacity (recommended)
  57. host_framerate_control 1
  58. // filter splore content
  59. // 0 for no filter (18+) 1 medium (13+) 2 maximum (kid-friendly)
  60. content_filter 1