You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

112 lines
2.4 KiB

5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
  1. # Specify a command to be executed
  2. # like `/bin/bash -l`, `ls`, or any other commands
  3. # the default is bash for Linux
  4. # or powershell.exe for Windows
  5. command: null
  6. # Specify the current working directory path
  7. # the default is the current working directory path
  8. cwd: null
  9. # Export additional ENV variables
  10. env:
  11. recording: true
  12. webdav:
  13. username: guillaume
  14. password: xxxxxxxxxx
  15. # Explicitly set the number of columns
  16. # or use `auto` to take the current
  17. # number of columns of your shell
  18. cols: auto
  19. # Explicitly set the number of rows
  20. # or use `auto` to take the current
  21. # number of rows of your shell
  22. rows: auto
  23. # Amount of times to repeat GIF
  24. # If value is -1, play once
  25. # If value is 0, loop indefinitely
  26. # If value is a positive number, loop n times
  27. repeat: 0
  28. # Quality
  29. # 1 - 100
  30. quality: 100
  31. # Delay between frames in ms
  32. # If the value is `auto` use the actual recording delays
  33. frameDelay: auto
  34. # Maximum delay between frames in ms
  35. # Ignored if the `frameDelay` isn't set to `auto`
  36. # Set to `auto` to prevent limiting the max idle time
  37. maxIdleTime: 2000
  38. # The surrounding frame box
  39. # The `type` can be null, window, floating, or solid`
  40. # To hide the title use the value null
  41. # Don't forget to add a backgroundColor style with a null as type
  42. frameBox:
  43. type: floating
  44. title: Terminalizer
  45. style:
  46. border: 0px black solid
  47. # boxShadow: none
  48. # margin: 0px
  49. # Add a watermark image to the rendered gif
  50. # You need to specify an absolute path for
  51. # the image on your machine or a URL, and you can also
  52. # add your own CSS styles
  53. watermark:
  54. imagePath: null
  55. style:
  56. position: absolute
  57. right: 15px
  58. bottom: 15px
  59. width: 100px
  60. opacity: 0.9
  61. # Cursor style can be one of
  62. # `block`, `underline`, or `bar`
  63. cursorStyle: block
  64. # Font family
  65. # You can use any font that is installed on your machine
  66. # in CSS-like syntax
  67. fontFamily: "Monaco, Lucida Console, Ubuntu Mono, Monospace"
  68. # The size of the font
  69. fontSize: 12
  70. # The height of lines
  71. lineHeight: 1
  72. # The spacing between letters
  73. letterSpacing: 0
  74. # Theme
  75. theme:
  76. background: "transparent"
  77. foreground: "#afafaf"
  78. cursor: "#c7c7c7"
  79. black: "#232628"
  80. red: "#fc4384"
  81. green: "#b3e33b"
  82. yellow: "#ffa727"
  83. blue: "#75dff2"
  84. magenta: "#ae89fe"
  85. cyan: "#708387"
  86. white: "#d5d5d0"
  87. brightBlack: "#626566"
  88. brightRed: "#ff7fac"
  89. brightGreen: "#c8ed71"
  90. brightYellow: "#ebdf86"
  91. brightBlue: "#75dff2"
  92. brightMagenta: "#ae89fe"
  93. brightCyan: "#b1c6ca"
  94. brightWhite: "#f9f9f4"
  95. comments: "__COMMENTS__"