Skip to content

Commit 820b1a9

Browse files
authored
Merge pull request #23 from vltansky/screengif
Screengif
2 parents bb1c0f8 + da33bf4 commit 820b1a9

File tree

4 files changed

+483
-1
lines changed

4 files changed

+483
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Quick start for HTML5 Boilerplate. Get up and running with one command.
88

99
You can get started using one of three options- `npx`, `npm init`, or
1010
`yarn create`
11-
11+
<img src="img/render1591958322106.gif">
1212
Using `npx`
1313

1414
```

img/config.yml

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

img/render1591958322106.gif

2.77 MB
Loading

0 commit comments

Comments
 (0)