Created
November 19, 2019 13:55
-
-
Save urbanadventurer/6bdd16af480d0f7500aa22a180b4f43f to your computer and use it in GitHub Desktop.
Terminalizer config with Tango theme
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Specify a command to be executed | |
# like `/bin/bash -l`, `ls`, or any other commands | |
# the default is bash for Linux | |
# or powershell.exe for Windows | |
command: /bin/bash #/usr/bin/zsh | |
# Specify the current working directory path | |
# the default is the current working directory path | |
cwd: null | |
# Export additional ENV variables | |
env: | |
recording: true | |
# Explicitly set the number of columns | |
# or use `auto` to take the current | |
# number of columns of your shell | |
cols: auto | |
# Explicitly set the number of rows | |
# or use `auto` to take the current | |
# number of rows of your shell | |
rows: auto | |
# Amount of times to repeat GIF | |
# If value is -1, play once | |
# If value is 0, loop indefinitely | |
# If value is a positive number, loop n times | |
repeat: 0 | |
# Quality | |
# 1 - 100 | |
quality: 100 | |
# Delay between frames in ms | |
# If the value is `auto` use the actual recording delays | |
frameDelay: auto | |
# Maximum delay between frames in ms | |
# Ignored if the `frameDelay` isn't set to `auto` | |
# Set to `auto` to prevent limiting the max idle time | |
maxIdleTime: 2000 | |
# The surrounding frame box | |
# The `type` can be null, window, floating, or solid` | |
# To hide the title use the value null | |
# Don't forget to add a backgroundColor style with a null as type | |
frameBox: | |
type: floating | |
title: null | |
style: | |
border: 0px black solid | |
# boxShadow: none | |
# margin: 0px | |
# Add a watermark image to the rendered gif | |
# You need to specify an absolute path for | |
# the image on your machine or a URL, and you can also | |
# add your own CSS styles | |
watermark: | |
imagePath: null | |
style: | |
position: absolute | |
right: 15px | |
bottom: 15px | |
width: 100px | |
opacity: 0.9 | |
# Cursor style can be one of | |
# `block`, `underline`, or `bar` | |
cursorStyle: block | |
# Font family | |
# You can use any font that is installed on your machine | |
# in CSS-like syntax | |
fontFamily: "Monospace, Monaco, Lucida Console, Ubuntu Mono, Monospace" | |
# The size of the font | |
fontSize: 14 | |
# The height of lines | |
lineHeight: 1 | |
# The spacing between letters | |
letterSpacing: 0 | |
# Tango Theme | |
# Colours copied from /usr/share/xfce4/terminal/colorschemes/tango.theme | |
# Background is set to the terminal border, so appears the same as transparent but without ANSI reverse bug. | |
theme: | |
background: "#1D1D1D" #"transparent" # "#161616" # instead of transparent "transparent" # | |
foreground: "#afafaf" | |
cursor: "#c7c7c7" | |
black: "#161616" | |
red: "#cc0000" | |
green: "#4e9a06" | |
yellow: "#c4a000" | |
blue: "#3465a4" | |
magenta: "#75507b" | |
cyan: "#06989a" | |
white: "#d3d7cf" | |
brightBlack: "#555753" | |
brightRed: "#ef2929" | |
brightGreen: "#8ae234" | |
brightYellow: "#fce94f" | |
brightBlue: "#739fcf" | |
brightMagenta: "#ad7fa8" | |
brightCyan: "#34e2e2" | |
brightWhite: "#eeeeec" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment