alacritty update BS

This commit is contained in:
2024-01-06 11:23:04 +01:00
parent 5d42533b19
commit ce228b4f51
465 changed files with 24031 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
colors:
primary:
background: '0x15141b'
foreground: '0xedecee'
normal:
black: '0x110f18'
red: '0xff6767'
green: '0x61ffca'
yellow: '0xffca85'
blue: '0xa277ff'
magenta: '0xa277ff'
cyan: '0x61ffca'
white: '0xedecee'
bright:
black: '0x6d6d6d'
red: '0xffca85'
green: '0xa277ff'
yellow: '0xffca85'
blue: '0xa277ff'
magenta: '0xa277ff'
cyan: '0x61ffca'
white: '0xedecee'

View File

@@ -0,0 +1,30 @@
import = ["/home/kristjank/.config/alacritty/ats-theme.toml"]
ipc_socket = true
[cursor.style]
shape = "Underline"
[env]
TERM = "xterm-256color"
[font]
size = 10
[font.bold]
family = "IBM Plex Mono"
style = "Bold"
[font.normal]
family = "IBM Plex Mono"
[[keyboard.bindings]]
action = "ToggleViMode"
key = "`"
mode = "~Search"
mods = "Control"
[mouse]
hide_when_typing = false
[window]
opacity = 0.97

View File

@@ -0,0 +1,648 @@
# Configuration for Alacritty, the GPU enhanced terminal emulator.
# Import additional configuration files
#
# Imports are loaded in order, skipping all missing files, with the importing
# file being loaded last. If a field is already present in a previous import, it
# will be replaced.
#
# All imports must either be absolute paths starting with `/`, or paths relative
# to the user's home directory starting with `~/`.
import:
- ~/.config/alacritty/ats-theme.yml
# Any items in the `env` entry below will be added as
# environment variables. Some entries may override variables
# set by alacritty itself.
env:
TERM: xterm-256color
window:
# Window dimensions (changes require restart)
#
# Number of lines/columns (not pixels) in the terminal. The number of columns
# must be at least `2`, while using a value of `0` for columns and lines will
# fall back to the window manager's recommended size.
#dimensions:
# columns: 0
# lines: 0
# Window position (changes require restart)
#
# Specified in number of pixels.
# If the position is not set, the window manager will handle the placement.
#position:
# x: 0
# y: 0
# Window padding (changes require restart)
#
# Blank space added around the window in pixels. This padding is scaled
# by DPI and the specified value is always added at both opposing sides.
#padding:
# x: 0
# y: 0
# Spread additional padding evenly around the terminal content.
#dynamic_padding: false
# Window decorations
#
# Values for `decorations`:
# - full: Borders and title bar
# - none: Neither borders nor title bar
#
# Values for `decorations` (macOS only):
# - transparent: Title bar, transparent background and title bar buttons
# - buttonless: Title bar, transparent background and no title bar buttons
#decorations: full
# Background opacity
#
# Window opacity as a floating point number from `0.0` to `1.0`.
# The value `0.0` is completely transparent and `1.0` is opaque.
opacity: 0.94
# Startup Mode (changes require restart)
#
# Values for `startup_mode`:
# - Windowed
# - Maximized
# - Fullscreen
#
# Values for `startup_mode` (macOS only):
# - SimpleFullscreen
#startup_mode: Windowed
# Window title
#title: Alacritty
# Allow terminal applications to change Alacritty's window title.
#dynamic_title: true
# Window class (Linux/BSD only):
#class:
# Application instance name
#instance: Alacritty
# General application class
#general: Alacritty
# GTK theme variant (Linux/BSD only)
#
# Override the variant of the GTK theme. Commonly supported values are `dark`
# and `light`. Set this to `None` to use the default theme variant.
#gtk_theme_variant: None
#scrolling:
# Maximum number of lines in the scrollback buffer.
# Specifying '0' will disable scrolling.
#history: 10000
# Scrolling distance multiplier.
#multiplier: 3
font:
normal:
family: IBM Plex Mono
bold:
family: IBM Plex Mono
style: Bold
size: 10
# Bell
#
# The bell is rung every time the BEL control character is received.
#bell:
# Visual Bell Animation
#
# Animation effect for flashing the screen when the visual bell is rung.
#
# Values for `animation`:
# - Ease
# - EaseOut
# - EaseOutSine
# - EaseOutQuad
# - EaseOutCubic
# - EaseOutQuart
# - EaseOutQuint
# - EaseOutExpo
# - EaseOutCirc
# - Linear
#animation: EaseOutExpo
# Duration of the visual bell flash in milliseconds. A `duration` of `0` will
# disable the visual bell animation.
#duration: 0
# Visual bell animation color.
#color: '#ffffff'
# Bell Command
#
# This program is executed whenever the bell is rung.
#
# When set to `command: None`, no command will be executed.
#
# Example:
# command:
# program: notify-send
# args: ["Hello, World!"]
#
#command: None
#selection:
# This string contains all characters that are used as separators for
# "semantic words" in Alacritty.
#semantic_escape_chars: ",│`|:\"' ()[]{}<>\t"
# When set to `true`, selected text will be copied to the primary clipboard.
#save_to_clipboard: false
cursor:
# Cursor style
style:
# Cursor shape
#
# Values for `shape`:
# - ▇ Block
# - _ Underline
# - | Beam
shape: Underline
# Cursor blinking state
#
# Values for `blinking`:
# - Never: Prevent the cursor from ever blinking
# - Off: Disable blinking by default
# - On: Enable blinking by default
# - Always: Force the cursor to always blink
#blinking: Off
# Vi mode cursor style
#
# If the vi mode cursor style is `None` or not specified, it will fall back to
# the style of the active value of the normal cursor.
#
# See `cursor.style` for available options.
#vi_mode_style: None
# Cursor blinking interval in milliseconds.
#blink_interval: 750
# If this is `true`, the cursor will be rendered as a hollow box when the
# window is not focused.
#unfocused_hollow: true
# Thickness of the cursor relative to the cell width as floating point number
# from `0.0` to `1.0`.
#thickness: 0.15
# Live config reload (changes require restart)
#live_config_reload: true
# Shell
#
# You can set `shell.program` to the path of your favorite shell, e.g.
# `/bin/fish`. Entries in `shell.args` are passed unmodified as arguments to the
# shell.
#
# Default:
# - (macOS) /bin/bash --login
# - (Linux/BSD) user login shell
# - (Windows) powershell
#shell:
# program: /bin/bash
# args:
# - --login
# Startup directory
#
# Directory the shell is started in. If this is unset, or `None`, the working
# directory of the parent process will be used.
#working_directory: None
# Send ESC (\x1b) before characters when alt is pressed.
#alt_send_esc: true
# Offer IPC using `alacritty msg` (unix only)
ipc_socket: true
mouse:
# Click settings
#
# The `double_click` and `triple_click` settings control the time
# alacritty should wait for accepting multiple clicks as one double
# or triple click.
#double_click: { threshold: 300 }
#triple_click: { threshold: 300 }
# If this is `true`, the cursor is temporarily hidden when typing.
hide_when_typing: false
# Regex hints
#
# Terminal hints can be used to find text in the visible part of the terminal
# and pipe it to other applications.
#hints:
# Keys used for the hint labels.
#alphabet: "jfkdls;ahgurieowpq"
# List with all available hints
#
# Each hint must have a `regex` and either an `action` or a `command` field.
# The fields `mouse`, `binding` and `post_processing` are optional.
#
# The fields `command`, `binding.key`, `binding.mods`, `binding.mode` and
# `mouse.mods` accept the same values as they do in the `key_bindings` section.
#
# The `mouse.enabled` field controls if the hint should be underlined while
# the mouse with all `mouse.mods` keys held or the vi mode cursor is above it.
#
# If the `post_processing` field is set to `true`, heuristics will be used to
# shorten the match if there are characters likely not to be part of the hint
# (e.g. a trailing `.`). This is most useful for URIs.
#
# Values for `action`:
# - Copy
# Copy the hint's text to the clipboard.
# - Paste
# Paste the hint's text to the terminal or search.
# - Select
# Select the hint's text.
# - MoveViModeCursor
# Move the vi mode cursor to the beginning of the hint.
#enabled:
# - regex: "(ipfs:|ipns:|magnet:|mailto:|gemini:|gopher:|https:|http:|news:|file:|git:|ssh:|ftp:)\
# [^\u0000-\u001F\u007F-\u009F<>\"\\s{-}\\^⟨⟩`]+"
# command: xdg-open
# post_processing: true
# mouse:
# enabled: true
# mods: None
# binding:
# key: U
# mods: Control|Shift
# Mouse bindings
#
# Mouse bindings are specified as a list of objects, much like the key
# bindings further below.
#
# To trigger mouse bindings when an application running within Alacritty
# captures the mouse, the `Shift` modifier is automatically added as a
# requirement.
#
# Each mouse binding will specify a:
#
# - `mouse`:
#
# - Middle
# - Left
# - Right
# - Numeric identifier such as `5`
#
# - `action` (see key bindings for actions not exclusive to mouse mode)
#
# - Mouse exclusive actions:
#
# - ExpandSelection
# Expand the selection to the current mouse cursor location.
#
# And optionally:
#
# - `mods` (see key bindings)
#mouse_bindings:
# - { mouse: Right, action: ExpandSelection }
# - { mouse: Right, mods: Control, action: ExpandSelection }
# - { mouse: Middle, mode: ~Vi, action: PasteSelection }
# Key bindings
#
# Key bindings are specified as a list of objects. For example, this is the
# default paste binding:
#
# `- { key: V, mods: Control|Shift, action: Paste }`
#
# Each key binding will specify a:
#
# - `key`: Identifier of the key pressed
#
# - A-Z
# - F1-F24
# - Key0-Key9
#
# A full list with available key codes can be found here:
# https://docs.rs/glutin/*/glutin/event/enum.VirtualKeyCode.html#variants
#
# Instead of using the name of the keys, the `key` field also supports using
# the scancode of the desired key. Scancodes have to be specified as a
# decimal number. This command will allow you to display the hex scancodes
# for certain keys:
#
# `showkey --scancodes`.
#
# Then exactly one of:
#
# - `chars`: Send a byte sequence to the running application
#
# The `chars` field writes the specified string to the terminal. This makes
# it possible to pass escape sequences. To find escape codes for bindings
# like `PageUp` (`"\x1b[5~"`), you can run the command `showkey -a` outside
# of tmux. Note that applications use terminfo to map escape sequences back
# to keys. It is therefore required to update the terminfo when changing an
# escape sequence.
#
# - `action`: Execute a predefined action
#
# - ToggleViMode
# - SearchForward
# Start searching toward the right of the search origin.
# - SearchBackward
# Start searching toward the left of the search origin.
# - Copy
# - Paste
# - IncreaseFontSize
# - DecreaseFontSize
# - ResetFontSize
# - ScrollPageUp
# - ScrollPageDown
# - ScrollHalfPageUp
# - ScrollHalfPageDown
# - ScrollLineUp
# - ScrollLineDown
# - ScrollToTop
# - ScrollToBottom
# - ClearHistory
# Remove the terminal's scrollback history.
# - Hide
# Hide the Alacritty window.
# - Minimize
# Minimize the Alacritty window.
# - Quit
# Quit Alacritty.
# - ToggleFullscreen
# - SpawnNewInstance
# Spawn a new instance of Alacritty.
# - CreateNewWindow
# Create a new Alacritty window from the current process.
# - ClearLogNotice
# Clear Alacritty's UI warning and error notice.
# - ClearSelection
# Remove the active selection.
# - ReceiveChar
# - None
#
# - Vi mode exclusive actions:
#
# - Open
# Perform the action of the first matching hint under the vi mode cursor
# with `mouse.enabled` set to `true`.
# - ToggleNormalSelection
# - ToggleLineSelection
# - ToggleBlockSelection
# - ToggleSemanticSelection
# Toggle semantic selection based on `selection.semantic_escape_chars`.
#
# - Vi mode exclusive cursor motion actions:
#
# - Up
# One line up.
# - Down
# One line down.
# - Left
# One character left.
# - Right
# One character right.
# - First
# First column, or beginning of the line when already at the first column.
# - Last
# Last column, or beginning of the line when already at the last column.
# - FirstOccupied
# First non-empty cell in this terminal row, or first non-empty cell of
# the line when already at the first cell of the row.
# - High
# Top of the screen.
# - Middle
# Center of the screen.
# - Low
# Bottom of the screen.
# - SemanticLeft
# Start of the previous semantically separated word.
# - SemanticRight
# Start of the next semantically separated word.
# - SemanticLeftEnd
# End of the previous semantically separated word.
# - SemanticRightEnd
# End of the next semantically separated word.
# - WordLeft
# Start of the previous whitespace separated word.
# - WordRight
# Start of the next whitespace separated word.
# - WordLeftEnd
# End of the previous whitespace separated word.
# - WordRightEnd
# End of the next whitespace separated word.
# - Bracket
# Character matching the bracket at the cursor's location.
# - SearchNext
# Beginning of the next match.
# - SearchPrevious
# Beginning of the previous match.
# - SearchStart
# Start of the match to the left of the vi mode cursor.
# - SearchEnd
# End of the match to the right of the vi mode cursor.
#
# - Search mode exclusive actions:
# - SearchFocusNext
# Move the focus to the next search match.
# - SearchFocusPrevious
# Move the focus to the previous search match.
# - SearchConfirm
# - SearchCancel
# - SearchClear
# Reset the search regex.
# - SearchDeleteWord
# Delete the last word in the search regex.
# - SearchHistoryPrevious
# Go to the previous regex in the search history.
# - SearchHistoryNext
# Go to the next regex in the search history.
#
# - macOS exclusive actions:
# - ToggleSimpleFullscreen
# Enter fullscreen without occupying another space.
#
# - Linux/BSD exclusive actions:
#
# - CopySelection
# Copy from the selection buffer.
# - PasteSelection
# Paste from the selection buffer.
#
# - `command`: Fork and execute a specified command plus arguments
#
# The `command` field must be a map containing a `program` string and an
# `args` array of command line parameter strings. For example:
# `{ program: "alacritty", args: ["-e", "vttest"] }`
#
# And optionally:
#
# - `mods`: Key modifiers to filter binding actions
#
# - Command
# - Control
# - Option
# - Super
# - Shift
# - Alt
#
# Multiple `mods` can be combined using `|` like this:
# `mods: Control|Shift`.
# Whitespace and capitalization are relevant and must match the example.
#
# - `mode`: Indicate a binding for only specific terminal reported modes
#
# This is mainly used to send applications the correct escape sequences
# when in different modes.
#
# - AppCursor
# - AppKeypad
# - Search
# - Alt
# - Vi
#
# A `~` operator can be used before a mode to apply the binding whenever
# the mode is *not* active, e.g. `~Alt`.
#
# Bindings are always filled by default, but will be replaced when a new
# binding with the same triggers is defined. To unset a default binding, it can
# be mapped to the `ReceiveChar` action. Alternatively, you can use `None` for
# a no-op if you do not wish to receive input characters for that binding.
#
# If the same trigger is assigned to multiple actions, all of them are executed
# in the order they were defined in.
key_bindings:
- {
key: Grave,
mods: Control,
mode: ~Search,
action: ToggleViMode
}
#- { key: Paste, action: Paste }
#- { key: Copy, action: Copy }
#- { key: L, mods: Control, action: ClearLogNotice }
#- { key: L, mods: Control, mode: ~Vi|~Search, chars: "\x0c" }
#- { key: PageUp, mods: Shift, mode: ~Alt, action: ScrollPageUp, }
#- { key: PageDown, mods: Shift, mode: ~Alt, action: ScrollPageDown }
#- { key: Home, mods: Shift, mode: ~Alt, action: ScrollToTop, }
#- { key: End, mods: Shift, mode: ~Alt, action: ScrollToBottom }
# Vi Mode
#- { key: Space, mods: Shift|Control, mode: ~Search, action: ToggleViMode }
#- { key: Space, mods: Shift|Control, mode: Vi|~Search, action: ScrollToBottom }
#- { key: Escape, mode: Vi|~Search, action: ClearSelection }
#- { key: I, mode: Vi|~Search, action: ToggleViMode }
#- { key: I, mode: Vi|~Search, action: ScrollToBottom }
#- { key: C, mods: Control, mode: Vi|~Search, action: ToggleViMode }
#- { key: Y, mods: Control, mode: Vi|~Search, action: ScrollLineUp }
#- { key: E, mods: Control, mode: Vi|~Search, action: ScrollLineDown }
#- { key: G, mode: Vi|~Search, action: ScrollToTop }
#- { key: G, mods: Shift, mode: Vi|~Search, action: ScrollToBottom }
#- { key: B, mods: Control, mode: Vi|~Search, action: ScrollPageUp }
#- { key: F, mods: Control, mode: Vi|~Search, action: ScrollPageDown }
#- { key: U, mods: Control, mode: Vi|~Search, action: ScrollHalfPageUp }
#- { key: D, mods: Control, mode: Vi|~Search, action: ScrollHalfPageDown }
#- { key: Y, mode: Vi|~Search, action: Copy }
#- { key: Y, mode: Vi|~Search, action: ClearSelection }
#- { key: Copy, mode: Vi|~Search, action: ClearSelection }
#- { key: V, mode: Vi|~Search, action: ToggleNormalSelection }
#- { key: V, mods: Shift, mode: Vi|~Search, action: ToggleLineSelection }
#- { key: V, mods: Control, mode: Vi|~Search, action: ToggleBlockSelection }
#- { key: V, mods: Alt, mode: Vi|~Search, action: ToggleSemanticSelection }
#- { key: Return, mode: Vi|~Search, action: Open }
#- { key: K, mode: Vi|~Search, action: Up }
#- { key: J, mode: Vi|~Search, action: Down }
#- { key: H, mode: Vi|~Search, action: Left }
#- { key: L, mode: Vi|~Search, action: Right }
#- { key: Up, mode: Vi|~Search, action: Up }
#- { key: Down, mode: Vi|~Search, action: Down }
#- { key: Left, mode: Vi|~Search, action: Left }
#- { key: Right, mode: Vi|~Search, action: Right }
#- { key: Key0, mode: Vi|~Search, action: First }
#- { key: Key4, mods: Shift, mode: Vi|~Search, action: Last }
#- { key: Key6, mods: Shift, mode: Vi|~Search, action: FirstOccupied }
#- { key: H, mods: Shift, mode: Vi|~Search, action: High }
#- { key: M, mods: Shift, mode: Vi|~Search, action: Middle }
#- { key: L, mods: Shift, mode: Vi|~Search, action: Low }
#- { key: B, mode: Vi|~Search, action: SemanticLeft }
#- { key: W, mode: Vi|~Search, action: SemanticRight }
#- { key: E, mode: Vi|~Search, action: SemanticRightEnd }
#- { key: B, mods: Shift, mode: Vi|~Search, action: WordLeft }
#- { key: W, mods: Shift, mode: Vi|~Search, action: WordRight }
#- { key: E, mods: Shift, mode: Vi|~Search, action: WordRightEnd }
#- { key: Key5, mods: Shift, mode: Vi|~Search, action: Bracket }
#- { key: Slash, mode: Vi|~Search, action: SearchForward }
#- { key: Slash, mods: Shift, mode: Vi|~Search, action: SearchBackward }
#- { key: N, mode: Vi|~Search, action: SearchNext }
#- { key: N, mods: Shift, mode: Vi|~Search, action: SearchPrevious }
# Search Mode
#- { key: Return, mode: Search|Vi, action: SearchConfirm }
#- { key: Escape, mode: Search, action: SearchCancel }
#- { key: C, mods: Control, mode: Search, action: SearchCancel }
#- { key: U, mods: Control, mode: Search, action: SearchClear }
#- { key: W, mods: Control, mode: Search, action: SearchDeleteWord }
#- { key: P, mods: Control, mode: Search, action: SearchHistoryPrevious }
#- { key: N, mods: Control, mode: Search, action: SearchHistoryNext }
#- { key: Up, mode: Search, action: SearchHistoryPrevious }
#- { key: Down, mode: Search, action: SearchHistoryNext }
#- { key: Return, mode: Search|~Vi, action: SearchFocusNext }
#- { key: Return, mods: Shift, mode: Search|~Vi, action: SearchFocusPrevious }
# (Windows, Linux, and BSD only)
#- { key: V, mods: Control|Shift, mode: ~Vi, action: Paste }
#- { key: C, mods: Control|Shift, action: Copy }
#- { key: F, mods: Control|Shift, mode: ~Search, action: SearchForward }
#- { key: B, mods: Control|Shift, mode: ~Search, action: SearchBackward }
#- { key: C, mods: Control|Shift, mode: Vi|~Search, action: ClearSelection }
#- { key: Insert, mods: Shift, action: PasteSelection }
#- { key: Key0, mods: Control, action: ResetFontSize }
#- { key: Equals, mods: Control, action: IncreaseFontSize }
#- { key: Plus, mods: Control, action: IncreaseFontSize }
#- { key: NumpadAdd, mods: Control, action: IncreaseFontSize }
#- { key: Minus, mods: Control, action: DecreaseFontSize }
#- { key: NumpadSubtract, mods: Control, action: DecreaseFontSize }
# (Windows only)
#- { key: Return, mods: Alt, action: ToggleFullscreen }
# (macOS only)
#- { key: K, mods: Command, mode: ~Vi|~Search, chars: "\x0c" }
#- { key: K, mods: Command, mode: ~Vi|~Search, action: ClearHistory }
#- { key: Key0, mods: Command, action: ResetFontSize }
#- { key: Equals, mods: Command, action: IncreaseFontSize }
#- { key: Plus, mods: Command, action: IncreaseFontSize }
#- { key: NumpadAdd, mods: Command, action: IncreaseFontSize }
#- { key: Minus, mods: Command, action: DecreaseFontSize }
#- { key: NumpadSubtract, mods: Command, action: DecreaseFontSize }
#- { key: V, mods: Command, action: Paste }
#- { key: C, mods: Command, action: Copy }
#- { key: C, mods: Command, mode: Vi|~Search, action: ClearSelection }
#- { key: H, mods: Command, action: Hide }
#- { key: H, mods: Command|Alt, action: HideOtherApplications }
#- { key: M, mods: Command, action: Minimize }
#- { key: Q, mods: Command, action: Quit }
#- { key: W, mods: Command, action: Quit }
#- { key: N, mods: Command, action: SpawnNewInstance }
#- { key: F, mods: Command|Control, action: ToggleFullscreen }
#- { key: F, mods: Command, mode: ~Search, action: SearchForward }
#- { key: B, mods: Command, mode: ~Search, action: SearchBackward }
#debug:
# Display the time it takes to redraw each frame.
#render_timer: false
# Keep the log file after quitting Alacritty.
#persistent_logging: false
# Log level
#
# Values for `log_level`:
# - Off
# - Error
# - Warn
# - Info
# - Debug
# - Trace
#log_level: Warn
# Print all received window events.
#print_events: false
colors:
name: Garuda (dr460nized)
author: dr460nf1r3
primary:
background: '0x0a1124'
foreground: '0xeec49a'
cursor:
text: '0x0a1124'
cursor: '0xeec49a'
normal:
black: '0x0a1124'
red: '0x5F4149'
green: '0xEB3247'
yellow: '0xBC4349'
blue: '0xF35645'
magenta: '0xF6A73B'
cyan: '0xFAD32F'
white: '0xeec49a'
bright:
black: '0xa6896b'
red: '0x5F4149'
green: '0xEB3247'
yellow: '0xBC4349'
blue: '0xF35645'
magenta: '0xF6A73B'
cyan: '0xFAD32F'
white: '0xeec49a'
theme: Garuda.dr460nized

View File

@@ -0,0 +1,648 @@
# Configuration for Alacritty, the GPU enhanced terminal emulator.
# Import additional configuration files
#
# Imports are loaded in order, skipping all missing files, with the importing
# file being loaded last. If a field is already present in a previous import, it
# will be replaced.
#
# All imports must either be absolute paths starting with `/`, or paths relative
# to the user's home directory starting with `~/`.
import:
- ~/.config/alacritty/ats-theme.yml
# Any items in the `env` entry below will be added as
# environment variables. Some entries may override variables
# set by alacritty itself.
env:
TERM: xterm-256color
window:
# Window dimensions (changes require restart)
#
# Number of lines/columns (not pixels) in the terminal. The number of columns
# must be at least `2`, while using a value of `0` for columns and lines will
# fall back to the window manager's recommended size.
#dimensions:
# columns: 0
# lines: 0
# Window position (changes require restart)
#
# Specified in number of pixels.
# If the position is not set, the window manager will handle the placement.
#position:
# x: 0
# y: 0
# Window padding (changes require restart)
#
# Blank space added around the window in pixels. This padding is scaled
# by DPI and the specified value is always added at both opposing sides.
#padding:
# x: 0
# y: 0
# Spread additional padding evenly around the terminal content.
#dynamic_padding: false
# Window decorations
#
# Values for `decorations`:
# - full: Borders and title bar
# - none: Neither borders nor title bar
#
# Values for `decorations` (macOS only):
# - transparent: Title bar, transparent background and title bar buttons
# - buttonless: Title bar, transparent background and no title bar buttons
#decorations: full
# Background opacity
#
# Window opacity as a floating point number from `0.0` to `1.0`.
# The value `0.0` is completely transparent and `1.0` is opaque.
opacity: 0.94
# Startup Mode (changes require restart)
#
# Values for `startup_mode`:
# - Windowed
# - Maximized
# - Fullscreen
#
# Values for `startup_mode` (macOS only):
# - SimpleFullscreen
#startup_mode: Windowed
# Window title
#title: Alacritty
# Allow terminal applications to change Alacritty's window title.
#dynamic_title: true
# Window class (Linux/BSD only):
#class:
# Application instance name
#instance: Alacritty
# General application class
#general: Alacritty
# GTK theme variant (Linux/BSD only)
#
# Override the variant of the GTK theme. Commonly supported values are `dark`
# and `light`. Set this to `None` to use the default theme variant.
#gtk_theme_variant: None
#scrolling:
# Maximum number of lines in the scrollback buffer.
# Specifying '0' will disable scrolling.
#history: 10000
# Scrolling distance multiplier.
#multiplier: 3
font:
normal:
family: IBM Plex Mono
bold:
family: IBM Plex Mono
style: Bold
size: 10
# Bell
#
# The bell is rung every time the BEL control character is received.
#bell:
# Visual Bell Animation
#
# Animation effect for flashing the screen when the visual bell is rung.
#
# Values for `animation`:
# - Ease
# - EaseOut
# - EaseOutSine
# - EaseOutQuad
# - EaseOutCubic
# - EaseOutQuart
# - EaseOutQuint
# - EaseOutExpo
# - EaseOutCirc
# - Linear
#animation: EaseOutExpo
# Duration of the visual bell flash in milliseconds. A `duration` of `0` will
# disable the visual bell animation.
#duration: 0
# Visual bell animation color.
#color: '#ffffff'
# Bell Command
#
# This program is executed whenever the bell is rung.
#
# When set to `command: None`, no command will be executed.
#
# Example:
# command:
# program: notify-send
# args: ["Hello, World!"]
#
#command: None
#selection:
# This string contains all characters that are used as separators for
# "semantic words" in Alacritty.
#semantic_escape_chars: ",│`|:\"' ()[]{}<>\t"
# When set to `true`, selected text will be copied to the primary clipboard.
#save_to_clipboard: false
cursor:
# Cursor style
style:
# Cursor shape
#
# Values for `shape`:
# - ▇ Block
# - _ Underline
# - | Beam
shape: Underline
# Cursor blinking state
#
# Values for `blinking`:
# - Never: Prevent the cursor from ever blinking
# - Off: Disable blinking by default
# - On: Enable blinking by default
# - Always: Force the cursor to always blink
#blinking: Off
# Vi mode cursor style
#
# If the vi mode cursor style is `None` or not specified, it will fall back to
# the style of the active value of the normal cursor.
#
# See `cursor.style` for available options.
#vi_mode_style: None
# Cursor blinking interval in milliseconds.
#blink_interval: 750
# If this is `true`, the cursor will be rendered as a hollow box when the
# window is not focused.
#unfocused_hollow: true
# Thickness of the cursor relative to the cell width as floating point number
# from `0.0` to `1.0`.
#thickness: 0.15
# Live config reload (changes require restart)
#live_config_reload: true
# Shell
#
# You can set `shell.program` to the path of your favorite shell, e.g.
# `/bin/fish`. Entries in `shell.args` are passed unmodified as arguments to the
# shell.
#
# Default:
# - (macOS) /bin/bash --login
# - (Linux/BSD) user login shell
# - (Windows) powershell
#shell:
# program: /bin/bash
# args:
# - --login
# Startup directory
#
# Directory the shell is started in. If this is unset, or `None`, the working
# directory of the parent process will be used.
#working_directory: None
# Send ESC (\x1b) before characters when alt is pressed.
#alt_send_esc: true
# Offer IPC using `alacritty msg` (unix only)
ipc_socket: true
mouse:
# Click settings
#
# The `double_click` and `triple_click` settings control the time
# alacritty should wait for accepting multiple clicks as one double
# or triple click.
#double_click: { threshold: 300 }
#triple_click: { threshold: 300 }
# If this is `true`, the cursor is temporarily hidden when typing.
hide_when_typing: false
# Regex hints
#
# Terminal hints can be used to find text in the visible part of the terminal
# and pipe it to other applications.
#hints:
# Keys used for the hint labels.
#alphabet: "jfkdls;ahgurieowpq"
# List with all available hints
#
# Each hint must have a `regex` and either an `action` or a `command` field.
# The fields `mouse`, `binding` and `post_processing` are optional.
#
# The fields `command`, `binding.key`, `binding.mods`, `binding.mode` and
# `mouse.mods` accept the same values as they do in the `key_bindings` section.
#
# The `mouse.enabled` field controls if the hint should be underlined while
# the mouse with all `mouse.mods` keys held or the vi mode cursor is above it.
#
# If the `post_processing` field is set to `true`, heuristics will be used to
# shorten the match if there are characters likely not to be part of the hint
# (e.g. a trailing `.`). This is most useful for URIs.
#
# Values for `action`:
# - Copy
# Copy the hint's text to the clipboard.
# - Paste
# Paste the hint's text to the terminal or search.
# - Select
# Select the hint's text.
# - MoveViModeCursor
# Move the vi mode cursor to the beginning of the hint.
#enabled:
# - regex: "(ipfs:|ipns:|magnet:|mailto:|gemini:|gopher:|https:|http:|news:|file:|git:|ssh:|ftp:)\
# [^\u0000-\u001F\u007F-\u009F<>\"\\s{-}\\^⟨⟩`]+"
# command: xdg-open
# post_processing: true
# mouse:
# enabled: true
# mods: None
# binding:
# key: U
# mods: Control|Shift
# Mouse bindings
#
# Mouse bindings are specified as a list of objects, much like the key
# bindings further below.
#
# To trigger mouse bindings when an application running within Alacritty
# captures the mouse, the `Shift` modifier is automatically added as a
# requirement.
#
# Each mouse binding will specify a:
#
# - `mouse`:
#
# - Middle
# - Left
# - Right
# - Numeric identifier such as `5`
#
# - `action` (see key bindings for actions not exclusive to mouse mode)
#
# - Mouse exclusive actions:
#
# - ExpandSelection
# Expand the selection to the current mouse cursor location.
#
# And optionally:
#
# - `mods` (see key bindings)
#mouse_bindings:
# - { mouse: Right, action: ExpandSelection }
# - { mouse: Right, mods: Control, action: ExpandSelection }
# - { mouse: Middle, mode: ~Vi, action: PasteSelection }
# Key bindings
#
# Key bindings are specified as a list of objects. For example, this is the
# default paste binding:
#
# `- { key: V, mods: Control|Shift, action: Paste }`
#
# Each key binding will specify a:
#
# - `key`: Identifier of the key pressed
#
# - A-Z
# - F1-F24
# - Key0-Key9
#
# A full list with available key codes can be found here:
# https://docs.rs/glutin/*/glutin/event/enum.VirtualKeyCode.html#variants
#
# Instead of using the name of the keys, the `key` field also supports using
# the scancode of the desired key. Scancodes have to be specified as a
# decimal number. This command will allow you to display the hex scancodes
# for certain keys:
#
# `showkey --scancodes`.
#
# Then exactly one of:
#
# - `chars`: Send a byte sequence to the running application
#
# The `chars` field writes the specified string to the terminal. This makes
# it possible to pass escape sequences. To find escape codes for bindings
# like `PageUp` (`"\x1b[5~"`), you can run the command `showkey -a` outside
# of tmux. Note that applications use terminfo to map escape sequences back
# to keys. It is therefore required to update the terminfo when changing an
# escape sequence.
#
# - `action`: Execute a predefined action
#
# - ToggleViMode
# - SearchForward
# Start searching toward the right of the search origin.
# - SearchBackward
# Start searching toward the left of the search origin.
# - Copy
# - Paste
# - IncreaseFontSize
# - DecreaseFontSize
# - ResetFontSize
# - ScrollPageUp
# - ScrollPageDown
# - ScrollHalfPageUp
# - ScrollHalfPageDown
# - ScrollLineUp
# - ScrollLineDown
# - ScrollToTop
# - ScrollToBottom
# - ClearHistory
# Remove the terminal's scrollback history.
# - Hide
# Hide the Alacritty window.
# - Minimize
# Minimize the Alacritty window.
# - Quit
# Quit Alacritty.
# - ToggleFullscreen
# - SpawnNewInstance
# Spawn a new instance of Alacritty.
# - CreateNewWindow
# Create a new Alacritty window from the current process.
# - ClearLogNotice
# Clear Alacritty's UI warning and error notice.
# - ClearSelection
# Remove the active selection.
# - ReceiveChar
# - None
#
# - Vi mode exclusive actions:
#
# - Open
# Perform the action of the first matching hint under the vi mode cursor
# with `mouse.enabled` set to `true`.
# - ToggleNormalSelection
# - ToggleLineSelection
# - ToggleBlockSelection
# - ToggleSemanticSelection
# Toggle semantic selection based on `selection.semantic_escape_chars`.
#
# - Vi mode exclusive cursor motion actions:
#
# - Up
# One line up.
# - Down
# One line down.
# - Left
# One character left.
# - Right
# One character right.
# - First
# First column, or beginning of the line when already at the first column.
# - Last
# Last column, or beginning of the line when already at the last column.
# - FirstOccupied
# First non-empty cell in this terminal row, or first non-empty cell of
# the line when already at the first cell of the row.
# - High
# Top of the screen.
# - Middle
# Center of the screen.
# - Low
# Bottom of the screen.
# - SemanticLeft
# Start of the previous semantically separated word.
# - SemanticRight
# Start of the next semantically separated word.
# - SemanticLeftEnd
# End of the previous semantically separated word.
# - SemanticRightEnd
# End of the next semantically separated word.
# - WordLeft
# Start of the previous whitespace separated word.
# - WordRight
# Start of the next whitespace separated word.
# - WordLeftEnd
# End of the previous whitespace separated word.
# - WordRightEnd
# End of the next whitespace separated word.
# - Bracket
# Character matching the bracket at the cursor's location.
# - SearchNext
# Beginning of the next match.
# - SearchPrevious
# Beginning of the previous match.
# - SearchStart
# Start of the match to the left of the vi mode cursor.
# - SearchEnd
# End of the match to the right of the vi mode cursor.
#
# - Search mode exclusive actions:
# - SearchFocusNext
# Move the focus to the next search match.
# - SearchFocusPrevious
# Move the focus to the previous search match.
# - SearchConfirm
# - SearchCancel
# - SearchClear
# Reset the search regex.
# - SearchDeleteWord
# Delete the last word in the search regex.
# - SearchHistoryPrevious
# Go to the previous regex in the search history.
# - SearchHistoryNext
# Go to the next regex in the search history.
#
# - macOS exclusive actions:
# - ToggleSimpleFullscreen
# Enter fullscreen without occupying another space.
#
# - Linux/BSD exclusive actions:
#
# - CopySelection
# Copy from the selection buffer.
# - PasteSelection
# Paste from the selection buffer.
#
# - `command`: Fork and execute a specified command plus arguments
#
# The `command` field must be a map containing a `program` string and an
# `args` array of command line parameter strings. For example:
# `{ program: "alacritty", args: ["-e", "vttest"] }`
#
# And optionally:
#
# - `mods`: Key modifiers to filter binding actions
#
# - Command
# - Control
# - Option
# - Super
# - Shift
# - Alt
#
# Multiple `mods` can be combined using `|` like this:
# `mods: Control|Shift`.
# Whitespace and capitalization are relevant and must match the example.
#
# - `mode`: Indicate a binding for only specific terminal reported modes
#
# This is mainly used to send applications the correct escape sequences
# when in different modes.
#
# - AppCursor
# - AppKeypad
# - Search
# - Alt
# - Vi
#
# A `~` operator can be used before a mode to apply the binding whenever
# the mode is *not* active, e.g. `~Alt`.
#
# Bindings are always filled by default, but will be replaced when a new
# binding with the same triggers is defined. To unset a default binding, it can
# be mapped to the `ReceiveChar` action. Alternatively, you can use `None` for
# a no-op if you do not wish to receive input characters for that binding.
#
# If the same trigger is assigned to multiple actions, all of them are executed
# in the order they were defined in.
key_bindings:
- {
key: Grave,
mods: Control,
mode: ~Search,
action: ToggleViMode
}
#- { key: Paste, action: Paste }
#- { key: Copy, action: Copy }
#- { key: L, mods: Control, action: ClearLogNotice }
#- { key: L, mods: Control, mode: ~Vi|~Search, chars: "\x0c" }
#- { key: PageUp, mods: Shift, mode: ~Alt, action: ScrollPageUp, }
#- { key: PageDown, mods: Shift, mode: ~Alt, action: ScrollPageDown }
#- { key: Home, mods: Shift, mode: ~Alt, action: ScrollToTop, }
#- { key: End, mods: Shift, mode: ~Alt, action: ScrollToBottom }
# Vi Mode
#- { key: Space, mods: Shift|Control, mode: ~Search, action: ToggleViMode }
#- { key: Space, mods: Shift|Control, mode: Vi|~Search, action: ScrollToBottom }
#- { key: Escape, mode: Vi|~Search, action: ClearSelection }
#- { key: I, mode: Vi|~Search, action: ToggleViMode }
#- { key: I, mode: Vi|~Search, action: ScrollToBottom }
#- { key: C, mods: Control, mode: Vi|~Search, action: ToggleViMode }
#- { key: Y, mods: Control, mode: Vi|~Search, action: ScrollLineUp }
#- { key: E, mods: Control, mode: Vi|~Search, action: ScrollLineDown }
#- { key: G, mode: Vi|~Search, action: ScrollToTop }
#- { key: G, mods: Shift, mode: Vi|~Search, action: ScrollToBottom }
#- { key: B, mods: Control, mode: Vi|~Search, action: ScrollPageUp }
#- { key: F, mods: Control, mode: Vi|~Search, action: ScrollPageDown }
#- { key: U, mods: Control, mode: Vi|~Search, action: ScrollHalfPageUp }
#- { key: D, mods: Control, mode: Vi|~Search, action: ScrollHalfPageDown }
#- { key: Y, mode: Vi|~Search, action: Copy }
#- { key: Y, mode: Vi|~Search, action: ClearSelection }
#- { key: Copy, mode: Vi|~Search, action: ClearSelection }
#- { key: V, mode: Vi|~Search, action: ToggleNormalSelection }
#- { key: V, mods: Shift, mode: Vi|~Search, action: ToggleLineSelection }
#- { key: V, mods: Control, mode: Vi|~Search, action: ToggleBlockSelection }
#- { key: V, mods: Alt, mode: Vi|~Search, action: ToggleSemanticSelection }
#- { key: Return, mode: Vi|~Search, action: Open }
#- { key: K, mode: Vi|~Search, action: Up }
#- { key: J, mode: Vi|~Search, action: Down }
#- { key: H, mode: Vi|~Search, action: Left }
#- { key: L, mode: Vi|~Search, action: Right }
#- { key: Up, mode: Vi|~Search, action: Up }
#- { key: Down, mode: Vi|~Search, action: Down }
#- { key: Left, mode: Vi|~Search, action: Left }
#- { key: Right, mode: Vi|~Search, action: Right }
#- { key: Key0, mode: Vi|~Search, action: First }
#- { key: Key4, mods: Shift, mode: Vi|~Search, action: Last }
#- { key: Key6, mods: Shift, mode: Vi|~Search, action: FirstOccupied }
#- { key: H, mods: Shift, mode: Vi|~Search, action: High }
#- { key: M, mods: Shift, mode: Vi|~Search, action: Middle }
#- { key: L, mods: Shift, mode: Vi|~Search, action: Low }
#- { key: B, mode: Vi|~Search, action: SemanticLeft }
#- { key: W, mode: Vi|~Search, action: SemanticRight }
#- { key: E, mode: Vi|~Search, action: SemanticRightEnd }
#- { key: B, mods: Shift, mode: Vi|~Search, action: WordLeft }
#- { key: W, mods: Shift, mode: Vi|~Search, action: WordRight }
#- { key: E, mods: Shift, mode: Vi|~Search, action: WordRightEnd }
#- { key: Key5, mods: Shift, mode: Vi|~Search, action: Bracket }
#- { key: Slash, mode: Vi|~Search, action: SearchForward }
#- { key: Slash, mods: Shift, mode: Vi|~Search, action: SearchBackward }
#- { key: N, mode: Vi|~Search, action: SearchNext }
#- { key: N, mods: Shift, mode: Vi|~Search, action: SearchPrevious }
# Search Mode
#- { key: Return, mode: Search|Vi, action: SearchConfirm }
#- { key: Escape, mode: Search, action: SearchCancel }
#- { key: C, mods: Control, mode: Search, action: SearchCancel }
#- { key: U, mods: Control, mode: Search, action: SearchClear }
#- { key: W, mods: Control, mode: Search, action: SearchDeleteWord }
#- { key: P, mods: Control, mode: Search, action: SearchHistoryPrevious }
#- { key: N, mods: Control, mode: Search, action: SearchHistoryNext }
#- { key: Up, mode: Search, action: SearchHistoryPrevious }
#- { key: Down, mode: Search, action: SearchHistoryNext }
#- { key: Return, mode: Search|~Vi, action: SearchFocusNext }
#- { key: Return, mods: Shift, mode: Search|~Vi, action: SearchFocusPrevious }
# (Windows, Linux, and BSD only)
#- { key: V, mods: Control|Shift, mode: ~Vi, action: Paste }
#- { key: C, mods: Control|Shift, action: Copy }
#- { key: F, mods: Control|Shift, mode: ~Search, action: SearchForward }
#- { key: B, mods: Control|Shift, mode: ~Search, action: SearchBackward }
#- { key: C, mods: Control|Shift, mode: Vi|~Search, action: ClearSelection }
#- { key: Insert, mods: Shift, action: PasteSelection }
#- { key: Key0, mods: Control, action: ResetFontSize }
#- { key: Equals, mods: Control, action: IncreaseFontSize }
#- { key: Plus, mods: Control, action: IncreaseFontSize }
#- { key: NumpadAdd, mods: Control, action: IncreaseFontSize }
#- { key: Minus, mods: Control, action: DecreaseFontSize }
#- { key: NumpadSubtract, mods: Control, action: DecreaseFontSize }
# (Windows only)
#- { key: Return, mods: Alt, action: ToggleFullscreen }
# (macOS only)
#- { key: K, mods: Command, mode: ~Vi|~Search, chars: "\x0c" }
#- { key: K, mods: Command, mode: ~Vi|~Search, action: ClearHistory }
#- { key: Key0, mods: Command, action: ResetFontSize }
#- { key: Equals, mods: Command, action: IncreaseFontSize }
#- { key: Plus, mods: Command, action: IncreaseFontSize }
#- { key: NumpadAdd, mods: Command, action: IncreaseFontSize }
#- { key: Minus, mods: Command, action: DecreaseFontSize }
#- { key: NumpadSubtract, mods: Command, action: DecreaseFontSize }
#- { key: V, mods: Command, action: Paste }
#- { key: C, mods: Command, action: Copy }
#- { key: C, mods: Command, mode: Vi|~Search, action: ClearSelection }
#- { key: H, mods: Command, action: Hide }
#- { key: H, mods: Command|Alt, action: HideOtherApplications }
#- { key: M, mods: Command, action: Minimize }
#- { key: Q, mods: Command, action: Quit }
#- { key: W, mods: Command, action: Quit }
#- { key: N, mods: Command, action: SpawnNewInstance }
#- { key: F, mods: Command|Control, action: ToggleFullscreen }
#- { key: F, mods: Command, mode: ~Search, action: SearchForward }
#- { key: B, mods: Command, mode: ~Search, action: SearchBackward }
#debug:
# Display the time it takes to redraw each frame.
#render_timer: false
# Keep the log file after quitting Alacritty.
#persistent_logging: false
# Log level
#
# Values for `log_level`:
# - Off
# - Error
# - Warn
# - Info
# - Debug
# - Trace
#log_level: Warn
# Print all received window events.
#print_events: false
colors:
name: Alabaster
author: tonsky
primary:
background: "#F7F7F7"
foreground: "#000000"
cursor:
text: "#448C27"
cursor: "#000000"
normal:
black: "#000000"
red: "#AA3731"
green: "#448C27"
yellow: "#CB9000"
blue: "#325CC0"
magenta: "#7A3E9D"
cyan: "#0083B2"
white: "#BBBBBB"
bright:
black: "#777777"
red: "#F05050"
green: "#60CB00"
yellow: "#FFBC5D"
blue: "#007ACC"
magenta: "#E64CE6"
cyan: "#00AACB"
white: "#FFFFFF"
theme: Alabaster

View File

@@ -0,0 +1,648 @@
# Configuration for Alacritty, the GPU enhanced terminal emulator.
# Import additional configuration files
#
# Imports are loaded in order, skipping all missing files, with the importing
# file being loaded last. If a field is already present in a previous import, it
# will be replaced.
#
# All imports must either be absolute paths starting with `/`, or paths relative
# to the user's home directory starting with `~/`.
import:
- ~/.config/alacritty/ats-theme.yml
# Any items in the `env` entry below will be added as
# environment variables. Some entries may override variables
# set by alacritty itself.
env:
TERM: xterm-256color
window:
# Window dimensions (changes require restart)
#
# Number of lines/columns (not pixels) in the terminal. The number of columns
# must be at least `2`, while using a value of `0` for columns and lines will
# fall back to the window manager's recommended size.
#dimensions:
# columns: 0
# lines: 0
# Window position (changes require restart)
#
# Specified in number of pixels.
# If the position is not set, the window manager will handle the placement.
#position:
# x: 0
# y: 0
# Window padding (changes require restart)
#
# Blank space added around the window in pixels. This padding is scaled
# by DPI and the specified value is always added at both opposing sides.
#padding:
# x: 0
# y: 0
# Spread additional padding evenly around the terminal content.
#dynamic_padding: false
# Window decorations
#
# Values for `decorations`:
# - full: Borders and title bar
# - none: Neither borders nor title bar
#
# Values for `decorations` (macOS only):
# - transparent: Title bar, transparent background and title bar buttons
# - buttonless: Title bar, transparent background and no title bar buttons
#decorations: full
# Background opacity
#
# Window opacity as a floating point number from `0.0` to `1.0`.
# The value `0.0` is completely transparent and `1.0` is opaque.
opacity: 0.94
# Startup Mode (changes require restart)
#
# Values for `startup_mode`:
# - Windowed
# - Maximized
# - Fullscreen
#
# Values for `startup_mode` (macOS only):
# - SimpleFullscreen
#startup_mode: Windowed
# Window title
#title: Alacritty
# Allow terminal applications to change Alacritty's window title.
#dynamic_title: true
# Window class (Linux/BSD only):
#class:
# Application instance name
#instance: Alacritty
# General application class
#general: Alacritty
# GTK theme variant (Linux/BSD only)
#
# Override the variant of the GTK theme. Commonly supported values are `dark`
# and `light`. Set this to `None` to use the default theme variant.
#gtk_theme_variant: None
#scrolling:
# Maximum number of lines in the scrollback buffer.
# Specifying '0' will disable scrolling.
#history: 10000
# Scrolling distance multiplier.
#multiplier: 3
font:
normal:
family: IBM Plex Mono
bold:
family: IBM Plex Mono
style: Bold
size: 10
# Bell
#
# The bell is rung every time the BEL control character is received.
#bell:
# Visual Bell Animation
#
# Animation effect for flashing the screen when the visual bell is rung.
#
# Values for `animation`:
# - Ease
# - EaseOut
# - EaseOutSine
# - EaseOutQuad
# - EaseOutCubic
# - EaseOutQuart
# - EaseOutQuint
# - EaseOutExpo
# - EaseOutCirc
# - Linear
#animation: EaseOutExpo
# Duration of the visual bell flash in milliseconds. A `duration` of `0` will
# disable the visual bell animation.
#duration: 0
# Visual bell animation color.
#color: '#ffffff'
# Bell Command
#
# This program is executed whenever the bell is rung.
#
# When set to `command: None`, no command will be executed.
#
# Example:
# command:
# program: notify-send
# args: ["Hello, World!"]
#
#command: None
#selection:
# This string contains all characters that are used as separators for
# "semantic words" in Alacritty.
#semantic_escape_chars: ",│`|:\"' ()[]{}<>\t"
# When set to `true`, selected text will be copied to the primary clipboard.
#save_to_clipboard: false
cursor:
# Cursor style
style:
# Cursor shape
#
# Values for `shape`:
# - ▇ Block
# - _ Underline
# - | Beam
shape: Underline
# Cursor blinking state
#
# Values for `blinking`:
# - Never: Prevent the cursor from ever blinking
# - Off: Disable blinking by default
# - On: Enable blinking by default
# - Always: Force the cursor to always blink
#blinking: Off
# Vi mode cursor style
#
# If the vi mode cursor style is `None` or not specified, it will fall back to
# the style of the active value of the normal cursor.
#
# See `cursor.style` for available options.
#vi_mode_style: None
# Cursor blinking interval in milliseconds.
#blink_interval: 750
# If this is `true`, the cursor will be rendered as a hollow box when the
# window is not focused.
#unfocused_hollow: true
# Thickness of the cursor relative to the cell width as floating point number
# from `0.0` to `1.0`.
#thickness: 0.15
# Live config reload (changes require restart)
#live_config_reload: true
# Shell
#
# You can set `shell.program` to the path of your favorite shell, e.g.
# `/bin/fish`. Entries in `shell.args` are passed unmodified as arguments to the
# shell.
#
# Default:
# - (macOS) /bin/bash --login
# - (Linux/BSD) user login shell
# - (Windows) powershell
#shell:
# program: /bin/bash
# args:
# - --login
# Startup directory
#
# Directory the shell is started in. If this is unset, or `None`, the working
# directory of the parent process will be used.
#working_directory: None
# Send ESC (\x1b) before characters when alt is pressed.
#alt_send_esc: true
# Offer IPC using `alacritty msg` (unix only)
ipc_socket: true
mouse:
# Click settings
#
# The `double_click` and `triple_click` settings control the time
# alacritty should wait for accepting multiple clicks as one double
# or triple click.
#double_click: { threshold: 300 }
#triple_click: { threshold: 300 }
# If this is `true`, the cursor is temporarily hidden when typing.
hide_when_typing: false
# Regex hints
#
# Terminal hints can be used to find text in the visible part of the terminal
# and pipe it to other applications.
#hints:
# Keys used for the hint labels.
#alphabet: "jfkdls;ahgurieowpq"
# List with all available hints
#
# Each hint must have a `regex` and either an `action` or a `command` field.
# The fields `mouse`, `binding` and `post_processing` are optional.
#
# The fields `command`, `binding.key`, `binding.mods`, `binding.mode` and
# `mouse.mods` accept the same values as they do in the `key_bindings` section.
#
# The `mouse.enabled` field controls if the hint should be underlined while
# the mouse with all `mouse.mods` keys held or the vi mode cursor is above it.
#
# If the `post_processing` field is set to `true`, heuristics will be used to
# shorten the match if there are characters likely not to be part of the hint
# (e.g. a trailing `.`). This is most useful for URIs.
#
# Values for `action`:
# - Copy
# Copy the hint's text to the clipboard.
# - Paste
# Paste the hint's text to the terminal or search.
# - Select
# Select the hint's text.
# - MoveViModeCursor
# Move the vi mode cursor to the beginning of the hint.
#enabled:
# - regex: "(ipfs:|ipns:|magnet:|mailto:|gemini:|gopher:|https:|http:|news:|file:|git:|ssh:|ftp:)\
# [^\u0000-\u001F\u007F-\u009F<>\"\\s{-}\\^⟨⟩`]+"
# command: xdg-open
# post_processing: true
# mouse:
# enabled: true
# mods: None
# binding:
# key: U
# mods: Control|Shift
# Mouse bindings
#
# Mouse bindings are specified as a list of objects, much like the key
# bindings further below.
#
# To trigger mouse bindings when an application running within Alacritty
# captures the mouse, the `Shift` modifier is automatically added as a
# requirement.
#
# Each mouse binding will specify a:
#
# - `mouse`:
#
# - Middle
# - Left
# - Right
# - Numeric identifier such as `5`
#
# - `action` (see key bindings for actions not exclusive to mouse mode)
#
# - Mouse exclusive actions:
#
# - ExpandSelection
# Expand the selection to the current mouse cursor location.
#
# And optionally:
#
# - `mods` (see key bindings)
#mouse_bindings:
# - { mouse: Right, action: ExpandSelection }
# - { mouse: Right, mods: Control, action: ExpandSelection }
# - { mouse: Middle, mode: ~Vi, action: PasteSelection }
# Key bindings
#
# Key bindings are specified as a list of objects. For example, this is the
# default paste binding:
#
# `- { key: V, mods: Control|Shift, action: Paste }`
#
# Each key binding will specify a:
#
# - `key`: Identifier of the key pressed
#
# - A-Z
# - F1-F24
# - Key0-Key9
#
# A full list with available key codes can be found here:
# https://docs.rs/glutin/*/glutin/event/enum.VirtualKeyCode.html#variants
#
# Instead of using the name of the keys, the `key` field also supports using
# the scancode of the desired key. Scancodes have to be specified as a
# decimal number. This command will allow you to display the hex scancodes
# for certain keys:
#
# `showkey --scancodes`.
#
# Then exactly one of:
#
# - `chars`: Send a byte sequence to the running application
#
# The `chars` field writes the specified string to the terminal. This makes
# it possible to pass escape sequences. To find escape codes for bindings
# like `PageUp` (`"\x1b[5~"`), you can run the command `showkey -a` outside
# of tmux. Note that applications use terminfo to map escape sequences back
# to keys. It is therefore required to update the terminfo when changing an
# escape sequence.
#
# - `action`: Execute a predefined action
#
# - ToggleViMode
# - SearchForward
# Start searching toward the right of the search origin.
# - SearchBackward
# Start searching toward the left of the search origin.
# - Copy
# - Paste
# - IncreaseFontSize
# - DecreaseFontSize
# - ResetFontSize
# - ScrollPageUp
# - ScrollPageDown
# - ScrollHalfPageUp
# - ScrollHalfPageDown
# - ScrollLineUp
# - ScrollLineDown
# - ScrollToTop
# - ScrollToBottom
# - ClearHistory
# Remove the terminal's scrollback history.
# - Hide
# Hide the Alacritty window.
# - Minimize
# Minimize the Alacritty window.
# - Quit
# Quit Alacritty.
# - ToggleFullscreen
# - SpawnNewInstance
# Spawn a new instance of Alacritty.
# - CreateNewWindow
# Create a new Alacritty window from the current process.
# - ClearLogNotice
# Clear Alacritty's UI warning and error notice.
# - ClearSelection
# Remove the active selection.
# - ReceiveChar
# - None
#
# - Vi mode exclusive actions:
#
# - Open
# Perform the action of the first matching hint under the vi mode cursor
# with `mouse.enabled` set to `true`.
# - ToggleNormalSelection
# - ToggleLineSelection
# - ToggleBlockSelection
# - ToggleSemanticSelection
# Toggle semantic selection based on `selection.semantic_escape_chars`.
#
# - Vi mode exclusive cursor motion actions:
#
# - Up
# One line up.
# - Down
# One line down.
# - Left
# One character left.
# - Right
# One character right.
# - First
# First column, or beginning of the line when already at the first column.
# - Last
# Last column, or beginning of the line when already at the last column.
# - FirstOccupied
# First non-empty cell in this terminal row, or first non-empty cell of
# the line when already at the first cell of the row.
# - High
# Top of the screen.
# - Middle
# Center of the screen.
# - Low
# Bottom of the screen.
# - SemanticLeft
# Start of the previous semantically separated word.
# - SemanticRight
# Start of the next semantically separated word.
# - SemanticLeftEnd
# End of the previous semantically separated word.
# - SemanticRightEnd
# End of the next semantically separated word.
# - WordLeft
# Start of the previous whitespace separated word.
# - WordRight
# Start of the next whitespace separated word.
# - WordLeftEnd
# End of the previous whitespace separated word.
# - WordRightEnd
# End of the next whitespace separated word.
# - Bracket
# Character matching the bracket at the cursor's location.
# - SearchNext
# Beginning of the next match.
# - SearchPrevious
# Beginning of the previous match.
# - SearchStart
# Start of the match to the left of the vi mode cursor.
# - SearchEnd
# End of the match to the right of the vi mode cursor.
#
# - Search mode exclusive actions:
# - SearchFocusNext
# Move the focus to the next search match.
# - SearchFocusPrevious
# Move the focus to the previous search match.
# - SearchConfirm
# - SearchCancel
# - SearchClear
# Reset the search regex.
# - SearchDeleteWord
# Delete the last word in the search regex.
# - SearchHistoryPrevious
# Go to the previous regex in the search history.
# - SearchHistoryNext
# Go to the next regex in the search history.
#
# - macOS exclusive actions:
# - ToggleSimpleFullscreen
# Enter fullscreen without occupying another space.
#
# - Linux/BSD exclusive actions:
#
# - CopySelection
# Copy from the selection buffer.
# - PasteSelection
# Paste from the selection buffer.
#
# - `command`: Fork and execute a specified command plus arguments
#
# The `command` field must be a map containing a `program` string and an
# `args` array of command line parameter strings. For example:
# `{ program: "alacritty", args: ["-e", "vttest"] }`
#
# And optionally:
#
# - `mods`: Key modifiers to filter binding actions
#
# - Command
# - Control
# - Option
# - Super
# - Shift
# - Alt
#
# Multiple `mods` can be combined using `|` like this:
# `mods: Control|Shift`.
# Whitespace and capitalization are relevant and must match the example.
#
# - `mode`: Indicate a binding for only specific terminal reported modes
#
# This is mainly used to send applications the correct escape sequences
# when in different modes.
#
# - AppCursor
# - AppKeypad
# - Search
# - Alt
# - Vi
#
# A `~` operator can be used before a mode to apply the binding whenever
# the mode is *not* active, e.g. `~Alt`.
#
# Bindings are always filled by default, but will be replaced when a new
# binding with the same triggers is defined. To unset a default binding, it can
# be mapped to the `ReceiveChar` action. Alternatively, you can use `None` for
# a no-op if you do not wish to receive input characters for that binding.
#
# If the same trigger is assigned to multiple actions, all of them are executed
# in the order they were defined in.
key_bindings:
- {
key: Grave,
mods: Control,
mode: ~Search,
action: ToggleViMode
}
#- { key: Paste, action: Paste }
#- { key: Copy, action: Copy }
#- { key: L, mods: Control, action: ClearLogNotice }
#- { key: L, mods: Control, mode: ~Vi|~Search, chars: "\x0c" }
#- { key: PageUp, mods: Shift, mode: ~Alt, action: ScrollPageUp, }
#- { key: PageDown, mods: Shift, mode: ~Alt, action: ScrollPageDown }
#- { key: Home, mods: Shift, mode: ~Alt, action: ScrollToTop, }
#- { key: End, mods: Shift, mode: ~Alt, action: ScrollToBottom }
# Vi Mode
#- { key: Space, mods: Shift|Control, mode: ~Search, action: ToggleViMode }
#- { key: Space, mods: Shift|Control, mode: Vi|~Search, action: ScrollToBottom }
#- { key: Escape, mode: Vi|~Search, action: ClearSelection }
#- { key: I, mode: Vi|~Search, action: ToggleViMode }
#- { key: I, mode: Vi|~Search, action: ScrollToBottom }
#- { key: C, mods: Control, mode: Vi|~Search, action: ToggleViMode }
#- { key: Y, mods: Control, mode: Vi|~Search, action: ScrollLineUp }
#- { key: E, mods: Control, mode: Vi|~Search, action: ScrollLineDown }
#- { key: G, mode: Vi|~Search, action: ScrollToTop }
#- { key: G, mods: Shift, mode: Vi|~Search, action: ScrollToBottom }
#- { key: B, mods: Control, mode: Vi|~Search, action: ScrollPageUp }
#- { key: F, mods: Control, mode: Vi|~Search, action: ScrollPageDown }
#- { key: U, mods: Control, mode: Vi|~Search, action: ScrollHalfPageUp }
#- { key: D, mods: Control, mode: Vi|~Search, action: ScrollHalfPageDown }
#- { key: Y, mode: Vi|~Search, action: Copy }
#- { key: Y, mode: Vi|~Search, action: ClearSelection }
#- { key: Copy, mode: Vi|~Search, action: ClearSelection }
#- { key: V, mode: Vi|~Search, action: ToggleNormalSelection }
#- { key: V, mods: Shift, mode: Vi|~Search, action: ToggleLineSelection }
#- { key: V, mods: Control, mode: Vi|~Search, action: ToggleBlockSelection }
#- { key: V, mods: Alt, mode: Vi|~Search, action: ToggleSemanticSelection }
#- { key: Return, mode: Vi|~Search, action: Open }
#- { key: K, mode: Vi|~Search, action: Up }
#- { key: J, mode: Vi|~Search, action: Down }
#- { key: H, mode: Vi|~Search, action: Left }
#- { key: L, mode: Vi|~Search, action: Right }
#- { key: Up, mode: Vi|~Search, action: Up }
#- { key: Down, mode: Vi|~Search, action: Down }
#- { key: Left, mode: Vi|~Search, action: Left }
#- { key: Right, mode: Vi|~Search, action: Right }
#- { key: Key0, mode: Vi|~Search, action: First }
#- { key: Key4, mods: Shift, mode: Vi|~Search, action: Last }
#- { key: Key6, mods: Shift, mode: Vi|~Search, action: FirstOccupied }
#- { key: H, mods: Shift, mode: Vi|~Search, action: High }
#- { key: M, mods: Shift, mode: Vi|~Search, action: Middle }
#- { key: L, mods: Shift, mode: Vi|~Search, action: Low }
#- { key: B, mode: Vi|~Search, action: SemanticLeft }
#- { key: W, mode: Vi|~Search, action: SemanticRight }
#- { key: E, mode: Vi|~Search, action: SemanticRightEnd }
#- { key: B, mods: Shift, mode: Vi|~Search, action: WordLeft }
#- { key: W, mods: Shift, mode: Vi|~Search, action: WordRight }
#- { key: E, mods: Shift, mode: Vi|~Search, action: WordRightEnd }
#- { key: Key5, mods: Shift, mode: Vi|~Search, action: Bracket }
#- { key: Slash, mode: Vi|~Search, action: SearchForward }
#- { key: Slash, mods: Shift, mode: Vi|~Search, action: SearchBackward }
#- { key: N, mode: Vi|~Search, action: SearchNext }
#- { key: N, mods: Shift, mode: Vi|~Search, action: SearchPrevious }
# Search Mode
#- { key: Return, mode: Search|Vi, action: SearchConfirm }
#- { key: Escape, mode: Search, action: SearchCancel }
#- { key: C, mods: Control, mode: Search, action: SearchCancel }
#- { key: U, mods: Control, mode: Search, action: SearchClear }
#- { key: W, mods: Control, mode: Search, action: SearchDeleteWord }
#- { key: P, mods: Control, mode: Search, action: SearchHistoryPrevious }
#- { key: N, mods: Control, mode: Search, action: SearchHistoryNext }
#- { key: Up, mode: Search, action: SearchHistoryPrevious }
#- { key: Down, mode: Search, action: SearchHistoryNext }
#- { key: Return, mode: Search|~Vi, action: SearchFocusNext }
#- { key: Return, mods: Shift, mode: Search|~Vi, action: SearchFocusPrevious }
# (Windows, Linux, and BSD only)
#- { key: V, mods: Control|Shift, mode: ~Vi, action: Paste }
#- { key: C, mods: Control|Shift, action: Copy }
#- { key: F, mods: Control|Shift, mode: ~Search, action: SearchForward }
#- { key: B, mods: Control|Shift, mode: ~Search, action: SearchBackward }
#- { key: C, mods: Control|Shift, mode: Vi|~Search, action: ClearSelection }
#- { key: Insert, mods: Shift, action: PasteSelection }
#- { key: Key0, mods: Control, action: ResetFontSize }
#- { key: Equals, mods: Control, action: IncreaseFontSize }
#- { key: Plus, mods: Control, action: IncreaseFontSize }
#- { key: NumpadAdd, mods: Control, action: IncreaseFontSize }
#- { key: Minus, mods: Control, action: DecreaseFontSize }
#- { key: NumpadSubtract, mods: Control, action: DecreaseFontSize }
# (Windows only)
#- { key: Return, mods: Alt, action: ToggleFullscreen }
# (macOS only)
#- { key: K, mods: Command, mode: ~Vi|~Search, chars: "\x0c" }
#- { key: K, mods: Command, mode: ~Vi|~Search, action: ClearHistory }
#- { key: Key0, mods: Command, action: ResetFontSize }
#- { key: Equals, mods: Command, action: IncreaseFontSize }
#- { key: Plus, mods: Command, action: IncreaseFontSize }
#- { key: NumpadAdd, mods: Command, action: IncreaseFontSize }
#- { key: Minus, mods: Command, action: DecreaseFontSize }
#- { key: NumpadSubtract, mods: Command, action: DecreaseFontSize }
#- { key: V, mods: Command, action: Paste }
#- { key: C, mods: Command, action: Copy }
#- { key: C, mods: Command, mode: Vi|~Search, action: ClearSelection }
#- { key: H, mods: Command, action: Hide }
#- { key: H, mods: Command|Alt, action: HideOtherApplications }
#- { key: M, mods: Command, action: Minimize }
#- { key: Q, mods: Command, action: Quit }
#- { key: W, mods: Command, action: Quit }
#- { key: N, mods: Command, action: SpawnNewInstance }
#- { key: F, mods: Command|Control, action: ToggleFullscreen }
#- { key: F, mods: Command, mode: ~Search, action: SearchForward }
#- { key: B, mods: Command, mode: ~Search, action: SearchBackward }
#debug:
# Display the time it takes to redraw each frame.
#render_timer: false
# Keep the log file after quitting Alacritty.
#persistent_logging: false
# Log level
#
# Values for `log_level`:
# - Off
# - Error
# - Warn
# - Info
# - Debug
# - Trace
#log_level: Warn
# Print all received window events.
#print_events: false
colors:
name: Alabaster
author: tonsky
primary:
background: "#F7F7F7"
foreground: "#000000"
cursor:
text: "#448C27"
cursor: "#000000"
normal:
black: "#000000"
red: "#AA3731"
green: "#448C27"
yellow: "#CB9000"
blue: "#325CC0"
magenta: "#7A3E9D"
cyan: "#0083B2"
white: "#BBBBBB"
bright:
black: "#777777"
red: "#F05050"
green: "#60CB00"
yellow: "#FFBC5D"
blue: "#007ACC"
magenta: "#E64CE6"
cyan: "#00AACB"
white: "#FFFFFF"
theme: Alabaster

View File

@@ -0,0 +1,648 @@
# Configuration for Alacritty, the GPU enhanced terminal emulator.
# Import additional configuration files
#
# Imports are loaded in order, skipping all missing files, with the importing
# file being loaded last. If a field is already present in a previous import, it
# will be replaced.
#
# All imports must either be absolute paths starting with `/`, or paths relative
# to the user's home directory starting with `~/`.
import:
- ~/.config/alacritty/ats-theme.yml
# Any items in the `env` entry below will be added as
# environment variables. Some entries may override variables
# set by alacritty itself.
env:
TERM: xterm-256color
window:
# Window dimensions (changes require restart)
#
# Number of lines/columns (not pixels) in the terminal. The number of columns
# must be at least `2`, while using a value of `0` for columns and lines will
# fall back to the window manager's recommended size.
#dimensions:
# columns: 0
# lines: 0
# Window position (changes require restart)
#
# Specified in number of pixels.
# If the position is not set, the window manager will handle the placement.
#position:
# x: 0
# y: 0
# Window padding (changes require restart)
#
# Blank space added around the window in pixels. This padding is scaled
# by DPI and the specified value is always added at both opposing sides.
#padding:
# x: 0
# y: 0
# Spread additional padding evenly around the terminal content.
#dynamic_padding: false
# Window decorations
#
# Values for `decorations`:
# - full: Borders and title bar
# - none: Neither borders nor title bar
#
# Values for `decorations` (macOS only):
# - transparent: Title bar, transparent background and title bar buttons
# - buttonless: Title bar, transparent background and no title bar buttons
#decorations: full
# Background opacity
#
# Window opacity as a floating point number from `0.0` to `1.0`.
# The value `0.0` is completely transparent and `1.0` is opaque.
opacity: 0.94
# Startup Mode (changes require restart)
#
# Values for `startup_mode`:
# - Windowed
# - Maximized
# - Fullscreen
#
# Values for `startup_mode` (macOS only):
# - SimpleFullscreen
#startup_mode: Windowed
# Window title
#title: Alacritty
# Allow terminal applications to change Alacritty's window title.
#dynamic_title: true
# Window class (Linux/BSD only):
#class:
# Application instance name
#instance: Alacritty
# General application class
#general: Alacritty
# GTK theme variant (Linux/BSD only)
#
# Override the variant of the GTK theme. Commonly supported values are `dark`
# and `light`. Set this to `None` to use the default theme variant.
#gtk_theme_variant: None
#scrolling:
# Maximum number of lines in the scrollback buffer.
# Specifying '0' will disable scrolling.
#history: 10000
# Scrolling distance multiplier.
#multiplier: 3
font:
normal:
family: IBM Plex Mono
bold:
family: IBM Plex Mono
style: Bold
size: 10
# Bell
#
# The bell is rung every time the BEL control character is received.
#bell:
# Visual Bell Animation
#
# Animation effect for flashing the screen when the visual bell is rung.
#
# Values for `animation`:
# - Ease
# - EaseOut
# - EaseOutSine
# - EaseOutQuad
# - EaseOutCubic
# - EaseOutQuart
# - EaseOutQuint
# - EaseOutExpo
# - EaseOutCirc
# - Linear
#animation: EaseOutExpo
# Duration of the visual bell flash in milliseconds. A `duration` of `0` will
# disable the visual bell animation.
#duration: 0
# Visual bell animation color.
#color: '#ffffff'
# Bell Command
#
# This program is executed whenever the bell is rung.
#
# When set to `command: None`, no command will be executed.
#
# Example:
# command:
# program: notify-send
# args: ["Hello, World!"]
#
#command: None
#selection:
# This string contains all characters that are used as separators for
# "semantic words" in Alacritty.
#semantic_escape_chars: ",│`|:\"' ()[]{}<>\t"
# When set to `true`, selected text will be copied to the primary clipboard.
#save_to_clipboard: false
cursor:
# Cursor style
style:
# Cursor shape
#
# Values for `shape`:
# - ▇ Block
# - _ Underline
# - | Beam
shape: Underline
# Cursor blinking state
#
# Values for `blinking`:
# - Never: Prevent the cursor from ever blinking
# - Off: Disable blinking by default
# - On: Enable blinking by default
# - Always: Force the cursor to always blink
#blinking: Off
# Vi mode cursor style
#
# If the vi mode cursor style is `None` or not specified, it will fall back to
# the style of the active value of the normal cursor.
#
# See `cursor.style` for available options.
#vi_mode_style: None
# Cursor blinking interval in milliseconds.
#blink_interval: 750
# If this is `true`, the cursor will be rendered as a hollow box when the
# window is not focused.
#unfocused_hollow: true
# Thickness of the cursor relative to the cell width as floating point number
# from `0.0` to `1.0`.
#thickness: 0.15
# Live config reload (changes require restart)
#live_config_reload: true
# Shell
#
# You can set `shell.program` to the path of your favorite shell, e.g.
# `/bin/fish`. Entries in `shell.args` are passed unmodified as arguments to the
# shell.
#
# Default:
# - (macOS) /bin/bash --login
# - (Linux/BSD) user login shell
# - (Windows) powershell
#shell:
# program: /bin/bash
# args:
# - --login
# Startup directory
#
# Directory the shell is started in. If this is unset, or `None`, the working
# directory of the parent process will be used.
#working_directory: None
# Send ESC (\x1b) before characters when alt is pressed.
#alt_send_esc: true
# Offer IPC using `alacritty msg` (unix only)
ipc_socket: true
mouse:
# Click settings
#
# The `double_click` and `triple_click` settings control the time
# alacritty should wait for accepting multiple clicks as one double
# or triple click.
#double_click: { threshold: 300 }
#triple_click: { threshold: 300 }
# If this is `true`, the cursor is temporarily hidden when typing.
hide_when_typing: false
# Regex hints
#
# Terminal hints can be used to find text in the visible part of the terminal
# and pipe it to other applications.
#hints:
# Keys used for the hint labels.
#alphabet: "jfkdls;ahgurieowpq"
# List with all available hints
#
# Each hint must have a `regex` and either an `action` or a `command` field.
# The fields `mouse`, `binding` and `post_processing` are optional.
#
# The fields `command`, `binding.key`, `binding.mods`, `binding.mode` and
# `mouse.mods` accept the same values as they do in the `key_bindings` section.
#
# The `mouse.enabled` field controls if the hint should be underlined while
# the mouse with all `mouse.mods` keys held or the vi mode cursor is above it.
#
# If the `post_processing` field is set to `true`, heuristics will be used to
# shorten the match if there are characters likely not to be part of the hint
# (e.g. a trailing `.`). This is most useful for URIs.
#
# Values for `action`:
# - Copy
# Copy the hint's text to the clipboard.
# - Paste
# Paste the hint's text to the terminal or search.
# - Select
# Select the hint's text.
# - MoveViModeCursor
# Move the vi mode cursor to the beginning of the hint.
#enabled:
# - regex: "(ipfs:|ipns:|magnet:|mailto:|gemini:|gopher:|https:|http:|news:|file:|git:|ssh:|ftp:)\
# [^\u0000-\u001F\u007F-\u009F<>\"\\s{-}\\^⟨⟩`]+"
# command: xdg-open
# post_processing: true
# mouse:
# enabled: true
# mods: None
# binding:
# key: U
# mods: Control|Shift
# Mouse bindings
#
# Mouse bindings are specified as a list of objects, much like the key
# bindings further below.
#
# To trigger mouse bindings when an application running within Alacritty
# captures the mouse, the `Shift` modifier is automatically added as a
# requirement.
#
# Each mouse binding will specify a:
#
# - `mouse`:
#
# - Middle
# - Left
# - Right
# - Numeric identifier such as `5`
#
# - `action` (see key bindings for actions not exclusive to mouse mode)
#
# - Mouse exclusive actions:
#
# - ExpandSelection
# Expand the selection to the current mouse cursor location.
#
# And optionally:
#
# - `mods` (see key bindings)
#mouse_bindings:
# - { mouse: Right, action: ExpandSelection }
# - { mouse: Right, mods: Control, action: ExpandSelection }
# - { mouse: Middle, mode: ~Vi, action: PasteSelection }
# Key bindings
#
# Key bindings are specified as a list of objects. For example, this is the
# default paste binding:
#
# `- { key: V, mods: Control|Shift, action: Paste }`
#
# Each key binding will specify a:
#
# - `key`: Identifier of the key pressed
#
# - A-Z
# - F1-F24
# - Key0-Key9
#
# A full list with available key codes can be found here:
# https://docs.rs/glutin/*/glutin/event/enum.VirtualKeyCode.html#variants
#
# Instead of using the name of the keys, the `key` field also supports using
# the scancode of the desired key. Scancodes have to be specified as a
# decimal number. This command will allow you to display the hex scancodes
# for certain keys:
#
# `showkey --scancodes`.
#
# Then exactly one of:
#
# - `chars`: Send a byte sequence to the running application
#
# The `chars` field writes the specified string to the terminal. This makes
# it possible to pass escape sequences. To find escape codes for bindings
# like `PageUp` (`"\x1b[5~"`), you can run the command `showkey -a` outside
# of tmux. Note that applications use terminfo to map escape sequences back
# to keys. It is therefore required to update the terminfo when changing an
# escape sequence.
#
# - `action`: Execute a predefined action
#
# - ToggleViMode
# - SearchForward
# Start searching toward the right of the search origin.
# - SearchBackward
# Start searching toward the left of the search origin.
# - Copy
# - Paste
# - IncreaseFontSize
# - DecreaseFontSize
# - ResetFontSize
# - ScrollPageUp
# - ScrollPageDown
# - ScrollHalfPageUp
# - ScrollHalfPageDown
# - ScrollLineUp
# - ScrollLineDown
# - ScrollToTop
# - ScrollToBottom
# - ClearHistory
# Remove the terminal's scrollback history.
# - Hide
# Hide the Alacritty window.
# - Minimize
# Minimize the Alacritty window.
# - Quit
# Quit Alacritty.
# - ToggleFullscreen
# - SpawnNewInstance
# Spawn a new instance of Alacritty.
# - CreateNewWindow
# Create a new Alacritty window from the current process.
# - ClearLogNotice
# Clear Alacritty's UI warning and error notice.
# - ClearSelection
# Remove the active selection.
# - ReceiveChar
# - None
#
# - Vi mode exclusive actions:
#
# - Open
# Perform the action of the first matching hint under the vi mode cursor
# with `mouse.enabled` set to `true`.
# - ToggleNormalSelection
# - ToggleLineSelection
# - ToggleBlockSelection
# - ToggleSemanticSelection
# Toggle semantic selection based on `selection.semantic_escape_chars`.
#
# - Vi mode exclusive cursor motion actions:
#
# - Up
# One line up.
# - Down
# One line down.
# - Left
# One character left.
# - Right
# One character right.
# - First
# First column, or beginning of the line when already at the first column.
# - Last
# Last column, or beginning of the line when already at the last column.
# - FirstOccupied
# First non-empty cell in this terminal row, or first non-empty cell of
# the line when already at the first cell of the row.
# - High
# Top of the screen.
# - Middle
# Center of the screen.
# - Low
# Bottom of the screen.
# - SemanticLeft
# Start of the previous semantically separated word.
# - SemanticRight
# Start of the next semantically separated word.
# - SemanticLeftEnd
# End of the previous semantically separated word.
# - SemanticRightEnd
# End of the next semantically separated word.
# - WordLeft
# Start of the previous whitespace separated word.
# - WordRight
# Start of the next whitespace separated word.
# - WordLeftEnd
# End of the previous whitespace separated word.
# - WordRightEnd
# End of the next whitespace separated word.
# - Bracket
# Character matching the bracket at the cursor's location.
# - SearchNext
# Beginning of the next match.
# - SearchPrevious
# Beginning of the previous match.
# - SearchStart
# Start of the match to the left of the vi mode cursor.
# - SearchEnd
# End of the match to the right of the vi mode cursor.
#
# - Search mode exclusive actions:
# - SearchFocusNext
# Move the focus to the next search match.
# - SearchFocusPrevious
# Move the focus to the previous search match.
# - SearchConfirm
# - SearchCancel
# - SearchClear
# Reset the search regex.
# - SearchDeleteWord
# Delete the last word in the search regex.
# - SearchHistoryPrevious
# Go to the previous regex in the search history.
# - SearchHistoryNext
# Go to the next regex in the search history.
#
# - macOS exclusive actions:
# - ToggleSimpleFullscreen
# Enter fullscreen without occupying another space.
#
# - Linux/BSD exclusive actions:
#
# - CopySelection
# Copy from the selection buffer.
# - PasteSelection
# Paste from the selection buffer.
#
# - `command`: Fork and execute a specified command plus arguments
#
# The `command` field must be a map containing a `program` string and an
# `args` array of command line parameter strings. For example:
# `{ program: "alacritty", args: ["-e", "vttest"] }`
#
# And optionally:
#
# - `mods`: Key modifiers to filter binding actions
#
# - Command
# - Control
# - Option
# - Super
# - Shift
# - Alt
#
# Multiple `mods` can be combined using `|` like this:
# `mods: Control|Shift`.
# Whitespace and capitalization are relevant and must match the example.
#
# - `mode`: Indicate a binding for only specific terminal reported modes
#
# This is mainly used to send applications the correct escape sequences
# when in different modes.
#
# - AppCursor
# - AppKeypad
# - Search
# - Alt
# - Vi
#
# A `~` operator can be used before a mode to apply the binding whenever
# the mode is *not* active, e.g. `~Alt`.
#
# Bindings are always filled by default, but will be replaced when a new
# binding with the same triggers is defined. To unset a default binding, it can
# be mapped to the `ReceiveChar` action. Alternatively, you can use `None` for
# a no-op if you do not wish to receive input characters for that binding.
#
# If the same trigger is assigned to multiple actions, all of them are executed
# in the order they were defined in.
key_bindings:
- {
key: Grave,
mods: Control,
mode: ~Search,
action: ToggleViMode
}
#- { key: Paste, action: Paste }
#- { key: Copy, action: Copy }
#- { key: L, mods: Control, action: ClearLogNotice }
#- { key: L, mods: Control, mode: ~Vi|~Search, chars: "\x0c" }
#- { key: PageUp, mods: Shift, mode: ~Alt, action: ScrollPageUp, }
#- { key: PageDown, mods: Shift, mode: ~Alt, action: ScrollPageDown }
#- { key: Home, mods: Shift, mode: ~Alt, action: ScrollToTop, }
#- { key: End, mods: Shift, mode: ~Alt, action: ScrollToBottom }
# Vi Mode
#- { key: Space, mods: Shift|Control, mode: ~Search, action: ToggleViMode }
#- { key: Space, mods: Shift|Control, mode: Vi|~Search, action: ScrollToBottom }
#- { key: Escape, mode: Vi|~Search, action: ClearSelection }
#- { key: I, mode: Vi|~Search, action: ToggleViMode }
#- { key: I, mode: Vi|~Search, action: ScrollToBottom }
#- { key: C, mods: Control, mode: Vi|~Search, action: ToggleViMode }
#- { key: Y, mods: Control, mode: Vi|~Search, action: ScrollLineUp }
#- { key: E, mods: Control, mode: Vi|~Search, action: ScrollLineDown }
#- { key: G, mode: Vi|~Search, action: ScrollToTop }
#- { key: G, mods: Shift, mode: Vi|~Search, action: ScrollToBottom }
#- { key: B, mods: Control, mode: Vi|~Search, action: ScrollPageUp }
#- { key: F, mods: Control, mode: Vi|~Search, action: ScrollPageDown }
#- { key: U, mods: Control, mode: Vi|~Search, action: ScrollHalfPageUp }
#- { key: D, mods: Control, mode: Vi|~Search, action: ScrollHalfPageDown }
#- { key: Y, mode: Vi|~Search, action: Copy }
#- { key: Y, mode: Vi|~Search, action: ClearSelection }
#- { key: Copy, mode: Vi|~Search, action: ClearSelection }
#- { key: V, mode: Vi|~Search, action: ToggleNormalSelection }
#- { key: V, mods: Shift, mode: Vi|~Search, action: ToggleLineSelection }
#- { key: V, mods: Control, mode: Vi|~Search, action: ToggleBlockSelection }
#- { key: V, mods: Alt, mode: Vi|~Search, action: ToggleSemanticSelection }
#- { key: Return, mode: Vi|~Search, action: Open }
#- { key: K, mode: Vi|~Search, action: Up }
#- { key: J, mode: Vi|~Search, action: Down }
#- { key: H, mode: Vi|~Search, action: Left }
#- { key: L, mode: Vi|~Search, action: Right }
#- { key: Up, mode: Vi|~Search, action: Up }
#- { key: Down, mode: Vi|~Search, action: Down }
#- { key: Left, mode: Vi|~Search, action: Left }
#- { key: Right, mode: Vi|~Search, action: Right }
#- { key: Key0, mode: Vi|~Search, action: First }
#- { key: Key4, mods: Shift, mode: Vi|~Search, action: Last }
#- { key: Key6, mods: Shift, mode: Vi|~Search, action: FirstOccupied }
#- { key: H, mods: Shift, mode: Vi|~Search, action: High }
#- { key: M, mods: Shift, mode: Vi|~Search, action: Middle }
#- { key: L, mods: Shift, mode: Vi|~Search, action: Low }
#- { key: B, mode: Vi|~Search, action: SemanticLeft }
#- { key: W, mode: Vi|~Search, action: SemanticRight }
#- { key: E, mode: Vi|~Search, action: SemanticRightEnd }
#- { key: B, mods: Shift, mode: Vi|~Search, action: WordLeft }
#- { key: W, mods: Shift, mode: Vi|~Search, action: WordRight }
#- { key: E, mods: Shift, mode: Vi|~Search, action: WordRightEnd }
#- { key: Key5, mods: Shift, mode: Vi|~Search, action: Bracket }
#- { key: Slash, mode: Vi|~Search, action: SearchForward }
#- { key: Slash, mods: Shift, mode: Vi|~Search, action: SearchBackward }
#- { key: N, mode: Vi|~Search, action: SearchNext }
#- { key: N, mods: Shift, mode: Vi|~Search, action: SearchPrevious }
# Search Mode
#- { key: Return, mode: Search|Vi, action: SearchConfirm }
#- { key: Escape, mode: Search, action: SearchCancel }
#- { key: C, mods: Control, mode: Search, action: SearchCancel }
#- { key: U, mods: Control, mode: Search, action: SearchClear }
#- { key: W, mods: Control, mode: Search, action: SearchDeleteWord }
#- { key: P, mods: Control, mode: Search, action: SearchHistoryPrevious }
#- { key: N, mods: Control, mode: Search, action: SearchHistoryNext }
#- { key: Up, mode: Search, action: SearchHistoryPrevious }
#- { key: Down, mode: Search, action: SearchHistoryNext }
#- { key: Return, mode: Search|~Vi, action: SearchFocusNext }
#- { key: Return, mods: Shift, mode: Search|~Vi, action: SearchFocusPrevious }
# (Windows, Linux, and BSD only)
#- { key: V, mods: Control|Shift, mode: ~Vi, action: Paste }
#- { key: C, mods: Control|Shift, action: Copy }
#- { key: F, mods: Control|Shift, mode: ~Search, action: SearchForward }
#- { key: B, mods: Control|Shift, mode: ~Search, action: SearchBackward }
#- { key: C, mods: Control|Shift, mode: Vi|~Search, action: ClearSelection }
#- { key: Insert, mods: Shift, action: PasteSelection }
#- { key: Key0, mods: Control, action: ResetFontSize }
#- { key: Equals, mods: Control, action: IncreaseFontSize }
#- { key: Plus, mods: Control, action: IncreaseFontSize }
#- { key: NumpadAdd, mods: Control, action: IncreaseFontSize }
#- { key: Minus, mods: Control, action: DecreaseFontSize }
#- { key: NumpadSubtract, mods: Control, action: DecreaseFontSize }
# (Windows only)
#- { key: Return, mods: Alt, action: ToggleFullscreen }
# (macOS only)
#- { key: K, mods: Command, mode: ~Vi|~Search, chars: "\x0c" }
#- { key: K, mods: Command, mode: ~Vi|~Search, action: ClearHistory }
#- { key: Key0, mods: Command, action: ResetFontSize }
#- { key: Equals, mods: Command, action: IncreaseFontSize }
#- { key: Plus, mods: Command, action: IncreaseFontSize }
#- { key: NumpadAdd, mods: Command, action: IncreaseFontSize }
#- { key: Minus, mods: Command, action: DecreaseFontSize }
#- { key: NumpadSubtract, mods: Command, action: DecreaseFontSize }
#- { key: V, mods: Command, action: Paste }
#- { key: C, mods: Command, action: Copy }
#- { key: C, mods: Command, mode: Vi|~Search, action: ClearSelection }
#- { key: H, mods: Command, action: Hide }
#- { key: H, mods: Command|Alt, action: HideOtherApplications }
#- { key: M, mods: Command, action: Minimize }
#- { key: Q, mods: Command, action: Quit }
#- { key: W, mods: Command, action: Quit }
#- { key: N, mods: Command, action: SpawnNewInstance }
#- { key: F, mods: Command|Control, action: ToggleFullscreen }
#- { key: F, mods: Command, mode: ~Search, action: SearchForward }
#- { key: B, mods: Command, mode: ~Search, action: SearchBackward }
#debug:
# Display the time it takes to redraw each frame.
#render_timer: false
# Keep the log file after quitting Alacritty.
#persistent_logging: false
# Log level
#
# Values for `log_level`:
# - Off
# - Error
# - Warn
# - Info
# - Debug
# - Trace
#log_level: Warn
# Print all received window events.
#print_events: false
colors:
name: Alabaster
author: tonsky
primary:
background: "#F7F7F7"
foreground: "#000000"
cursor:
text: "#448C27"
cursor: "#000000"
normal:
black: "#000000"
red: "#AA3731"
green: "#448C27"
yellow: "#CB9000"
blue: "#325CC0"
magenta: "#7A3E9D"
cyan: "#0083B2"
white: "#BBBBBB"
bright:
black: "#777777"
red: "#F05050"
green: "#60CB00"
yellow: "#FFBC5D"
blue: "#007ACC"
magenta: "#E64CE6"
cyan: "#00AACB"
white: "#FFFFFF"
theme: Alabaster

View File

@@ -0,0 +1,648 @@
# Configuration for Alacritty, the GPU enhanced terminal emulator.
# Import additional configuration files
#
# Imports are loaded in order, skipping all missing files, with the importing
# file being loaded last. If a field is already present in a previous import, it
# will be replaced.
#
# All imports must either be absolute paths starting with `/`, or paths relative
# to the user's home directory starting with `~/`.
import:
- ~/.config/alacritty/ats-theme.yml
# Any items in the `env` entry below will be added as
# environment variables. Some entries may override variables
# set by alacritty itself.
env:
TERM: xterm-256color
window:
# Window dimensions (changes require restart)
#
# Number of lines/columns (not pixels) in the terminal. The number of columns
# must be at least `2`, while using a value of `0` for columns and lines will
# fall back to the window manager's recommended size.
#dimensions:
# columns: 0
# lines: 0
# Window position (changes require restart)
#
# Specified in number of pixels.
# If the position is not set, the window manager will handle the placement.
#position:
# x: 0
# y: 0
# Window padding (changes require restart)
#
# Blank space added around the window in pixels. This padding is scaled
# by DPI and the specified value is always added at both opposing sides.
#padding:
# x: 0
# y: 0
# Spread additional padding evenly around the terminal content.
#dynamic_padding: false
# Window decorations
#
# Values for `decorations`:
# - full: Borders and title bar
# - none: Neither borders nor title bar
#
# Values for `decorations` (macOS only):
# - transparent: Title bar, transparent background and title bar buttons
# - buttonless: Title bar, transparent background and no title bar buttons
#decorations: full
# Background opacity
#
# Window opacity as a floating point number from `0.0` to `1.0`.
# The value `0.0` is completely transparent and `1.0` is opaque.
opacity: 0.94
# Startup Mode (changes require restart)
#
# Values for `startup_mode`:
# - Windowed
# - Maximized
# - Fullscreen
#
# Values for `startup_mode` (macOS only):
# - SimpleFullscreen
#startup_mode: Windowed
# Window title
#title: Alacritty
# Allow terminal applications to change Alacritty's window title.
#dynamic_title: true
# Window class (Linux/BSD only):
#class:
# Application instance name
#instance: Alacritty
# General application class
#general: Alacritty
# GTK theme variant (Linux/BSD only)
#
# Override the variant of the GTK theme. Commonly supported values are `dark`
# and `light`. Set this to `None` to use the default theme variant.
#gtk_theme_variant: None
#scrolling:
# Maximum number of lines in the scrollback buffer.
# Specifying '0' will disable scrolling.
#history: 10000
# Scrolling distance multiplier.
#multiplier: 3
font:
normal:
family: IBM Plex Mono
bold:
family: IBM Plex Mono
style: Bold
size: 10
# Bell
#
# The bell is rung every time the BEL control character is received.
#bell:
# Visual Bell Animation
#
# Animation effect for flashing the screen when the visual bell is rung.
#
# Values for `animation`:
# - Ease
# - EaseOut
# - EaseOutSine
# - EaseOutQuad
# - EaseOutCubic
# - EaseOutQuart
# - EaseOutQuint
# - EaseOutExpo
# - EaseOutCirc
# - Linear
#animation: EaseOutExpo
# Duration of the visual bell flash in milliseconds. A `duration` of `0` will
# disable the visual bell animation.
#duration: 0
# Visual bell animation color.
#color: '#ffffff'
# Bell Command
#
# This program is executed whenever the bell is rung.
#
# When set to `command: None`, no command will be executed.
#
# Example:
# command:
# program: notify-send
# args: ["Hello, World!"]
#
#command: None
#selection:
# This string contains all characters that are used as separators for
# "semantic words" in Alacritty.
#semantic_escape_chars: ",│`|:\"' ()[]{}<>\t"
# When set to `true`, selected text will be copied to the primary clipboard.
#save_to_clipboard: false
cursor:
# Cursor style
style:
# Cursor shape
#
# Values for `shape`:
# - ▇ Block
# - _ Underline
# - | Beam
shape: Underline
# Cursor blinking state
#
# Values for `blinking`:
# - Never: Prevent the cursor from ever blinking
# - Off: Disable blinking by default
# - On: Enable blinking by default
# - Always: Force the cursor to always blink
#blinking: Off
# Vi mode cursor style
#
# If the vi mode cursor style is `None` or not specified, it will fall back to
# the style of the active value of the normal cursor.
#
# See `cursor.style` for available options.
#vi_mode_style: None
# Cursor blinking interval in milliseconds.
#blink_interval: 750
# If this is `true`, the cursor will be rendered as a hollow box when the
# window is not focused.
#unfocused_hollow: true
# Thickness of the cursor relative to the cell width as floating point number
# from `0.0` to `1.0`.
#thickness: 0.15
# Live config reload (changes require restart)
#live_config_reload: true
# Shell
#
# You can set `shell.program` to the path of your favorite shell, e.g.
# `/bin/fish`. Entries in `shell.args` are passed unmodified as arguments to the
# shell.
#
# Default:
# - (macOS) /bin/bash --login
# - (Linux/BSD) user login shell
# - (Windows) powershell
#shell:
# program: /bin/bash
# args:
# - --login
# Startup directory
#
# Directory the shell is started in. If this is unset, or `None`, the working
# directory of the parent process will be used.
#working_directory: None
# Send ESC (\x1b) before characters when alt is pressed.
#alt_send_esc: true
# Offer IPC using `alacritty msg` (unix only)
ipc_socket: true
mouse:
# Click settings
#
# The `double_click` and `triple_click` settings control the time
# alacritty should wait for accepting multiple clicks as one double
# or triple click.
#double_click: { threshold: 300 }
#triple_click: { threshold: 300 }
# If this is `true`, the cursor is temporarily hidden when typing.
hide_when_typing: false
# Regex hints
#
# Terminal hints can be used to find text in the visible part of the terminal
# and pipe it to other applications.
#hints:
# Keys used for the hint labels.
#alphabet: "jfkdls;ahgurieowpq"
# List with all available hints
#
# Each hint must have a `regex` and either an `action` or a `command` field.
# The fields `mouse`, `binding` and `post_processing` are optional.
#
# The fields `command`, `binding.key`, `binding.mods`, `binding.mode` and
# `mouse.mods` accept the same values as they do in the `key_bindings` section.
#
# The `mouse.enabled` field controls if the hint should be underlined while
# the mouse with all `mouse.mods` keys held or the vi mode cursor is above it.
#
# If the `post_processing` field is set to `true`, heuristics will be used to
# shorten the match if there are characters likely not to be part of the hint
# (e.g. a trailing `.`). This is most useful for URIs.
#
# Values for `action`:
# - Copy
# Copy the hint's text to the clipboard.
# - Paste
# Paste the hint's text to the terminal or search.
# - Select
# Select the hint's text.
# - MoveViModeCursor
# Move the vi mode cursor to the beginning of the hint.
#enabled:
# - regex: "(ipfs:|ipns:|magnet:|mailto:|gemini:|gopher:|https:|http:|news:|file:|git:|ssh:|ftp:)\
# [^\u0000-\u001F\u007F-\u009F<>\"\\s{-}\\^⟨⟩`]+"
# command: xdg-open
# post_processing: true
# mouse:
# enabled: true
# mods: None
# binding:
# key: U
# mods: Control|Shift
# Mouse bindings
#
# Mouse bindings are specified as a list of objects, much like the key
# bindings further below.
#
# To trigger mouse bindings when an application running within Alacritty
# captures the mouse, the `Shift` modifier is automatically added as a
# requirement.
#
# Each mouse binding will specify a:
#
# - `mouse`:
#
# - Middle
# - Left
# - Right
# - Numeric identifier such as `5`
#
# - `action` (see key bindings for actions not exclusive to mouse mode)
#
# - Mouse exclusive actions:
#
# - ExpandSelection
# Expand the selection to the current mouse cursor location.
#
# And optionally:
#
# - `mods` (see key bindings)
#mouse_bindings:
# - { mouse: Right, action: ExpandSelection }
# - { mouse: Right, mods: Control, action: ExpandSelection }
# - { mouse: Middle, mode: ~Vi, action: PasteSelection }
# Key bindings
#
# Key bindings are specified as a list of objects. For example, this is the
# default paste binding:
#
# `- { key: V, mods: Control|Shift, action: Paste }`
#
# Each key binding will specify a:
#
# - `key`: Identifier of the key pressed
#
# - A-Z
# - F1-F24
# - Key0-Key9
#
# A full list with available key codes can be found here:
# https://docs.rs/glutin/*/glutin/event/enum.VirtualKeyCode.html#variants
#
# Instead of using the name of the keys, the `key` field also supports using
# the scancode of the desired key. Scancodes have to be specified as a
# decimal number. This command will allow you to display the hex scancodes
# for certain keys:
#
# `showkey --scancodes`.
#
# Then exactly one of:
#
# - `chars`: Send a byte sequence to the running application
#
# The `chars` field writes the specified string to the terminal. This makes
# it possible to pass escape sequences. To find escape codes for bindings
# like `PageUp` (`"\x1b[5~"`), you can run the command `showkey -a` outside
# of tmux. Note that applications use terminfo to map escape sequences back
# to keys. It is therefore required to update the terminfo when changing an
# escape sequence.
#
# - `action`: Execute a predefined action
#
# - ToggleViMode
# - SearchForward
# Start searching toward the right of the search origin.
# - SearchBackward
# Start searching toward the left of the search origin.
# - Copy
# - Paste
# - IncreaseFontSize
# - DecreaseFontSize
# - ResetFontSize
# - ScrollPageUp
# - ScrollPageDown
# - ScrollHalfPageUp
# - ScrollHalfPageDown
# - ScrollLineUp
# - ScrollLineDown
# - ScrollToTop
# - ScrollToBottom
# - ClearHistory
# Remove the terminal's scrollback history.
# - Hide
# Hide the Alacritty window.
# - Minimize
# Minimize the Alacritty window.
# - Quit
# Quit Alacritty.
# - ToggleFullscreen
# - SpawnNewInstance
# Spawn a new instance of Alacritty.
# - CreateNewWindow
# Create a new Alacritty window from the current process.
# - ClearLogNotice
# Clear Alacritty's UI warning and error notice.
# - ClearSelection
# Remove the active selection.
# - ReceiveChar
# - None
#
# - Vi mode exclusive actions:
#
# - Open
# Perform the action of the first matching hint under the vi mode cursor
# with `mouse.enabled` set to `true`.
# - ToggleNormalSelection
# - ToggleLineSelection
# - ToggleBlockSelection
# - ToggleSemanticSelection
# Toggle semantic selection based on `selection.semantic_escape_chars`.
#
# - Vi mode exclusive cursor motion actions:
#
# - Up
# One line up.
# - Down
# One line down.
# - Left
# One character left.
# - Right
# One character right.
# - First
# First column, or beginning of the line when already at the first column.
# - Last
# Last column, or beginning of the line when already at the last column.
# - FirstOccupied
# First non-empty cell in this terminal row, or first non-empty cell of
# the line when already at the first cell of the row.
# - High
# Top of the screen.
# - Middle
# Center of the screen.
# - Low
# Bottom of the screen.
# - SemanticLeft
# Start of the previous semantically separated word.
# - SemanticRight
# Start of the next semantically separated word.
# - SemanticLeftEnd
# End of the previous semantically separated word.
# - SemanticRightEnd
# End of the next semantically separated word.
# - WordLeft
# Start of the previous whitespace separated word.
# - WordRight
# Start of the next whitespace separated word.
# - WordLeftEnd
# End of the previous whitespace separated word.
# - WordRightEnd
# End of the next whitespace separated word.
# - Bracket
# Character matching the bracket at the cursor's location.
# - SearchNext
# Beginning of the next match.
# - SearchPrevious
# Beginning of the previous match.
# - SearchStart
# Start of the match to the left of the vi mode cursor.
# - SearchEnd
# End of the match to the right of the vi mode cursor.
#
# - Search mode exclusive actions:
# - SearchFocusNext
# Move the focus to the next search match.
# - SearchFocusPrevious
# Move the focus to the previous search match.
# - SearchConfirm
# - SearchCancel
# - SearchClear
# Reset the search regex.
# - SearchDeleteWord
# Delete the last word in the search regex.
# - SearchHistoryPrevious
# Go to the previous regex in the search history.
# - SearchHistoryNext
# Go to the next regex in the search history.
#
# - macOS exclusive actions:
# - ToggleSimpleFullscreen
# Enter fullscreen without occupying another space.
#
# - Linux/BSD exclusive actions:
#
# - CopySelection
# Copy from the selection buffer.
# - PasteSelection
# Paste from the selection buffer.
#
# - `command`: Fork and execute a specified command plus arguments
#
# The `command` field must be a map containing a `program` string and an
# `args` array of command line parameter strings. For example:
# `{ program: "alacritty", args: ["-e", "vttest"] }`
#
# And optionally:
#
# - `mods`: Key modifiers to filter binding actions
#
# - Command
# - Control
# - Option
# - Super
# - Shift
# - Alt
#
# Multiple `mods` can be combined using `|` like this:
# `mods: Control|Shift`.
# Whitespace and capitalization are relevant and must match the example.
#
# - `mode`: Indicate a binding for only specific terminal reported modes
#
# This is mainly used to send applications the correct escape sequences
# when in different modes.
#
# - AppCursor
# - AppKeypad
# - Search
# - Alt
# - Vi
#
# A `~` operator can be used before a mode to apply the binding whenever
# the mode is *not* active, e.g. `~Alt`.
#
# Bindings are always filled by default, but will be replaced when a new
# binding with the same triggers is defined. To unset a default binding, it can
# be mapped to the `ReceiveChar` action. Alternatively, you can use `None` for
# a no-op if you do not wish to receive input characters for that binding.
#
# If the same trigger is assigned to multiple actions, all of them are executed
# in the order they were defined in.
key_bindings:
- {
key: Grave,
mods: Control,
mode: ~Search,
action: ToggleViMode
}
#- { key: Paste, action: Paste }
#- { key: Copy, action: Copy }
#- { key: L, mods: Control, action: ClearLogNotice }
#- { key: L, mods: Control, mode: ~Vi|~Search, chars: "\x0c" }
#- { key: PageUp, mods: Shift, mode: ~Alt, action: ScrollPageUp, }
#- { key: PageDown, mods: Shift, mode: ~Alt, action: ScrollPageDown }
#- { key: Home, mods: Shift, mode: ~Alt, action: ScrollToTop, }
#- { key: End, mods: Shift, mode: ~Alt, action: ScrollToBottom }
# Vi Mode
#- { key: Space, mods: Shift|Control, mode: ~Search, action: ToggleViMode }
#- { key: Space, mods: Shift|Control, mode: Vi|~Search, action: ScrollToBottom }
#- { key: Escape, mode: Vi|~Search, action: ClearSelection }
#- { key: I, mode: Vi|~Search, action: ToggleViMode }
#- { key: I, mode: Vi|~Search, action: ScrollToBottom }
#- { key: C, mods: Control, mode: Vi|~Search, action: ToggleViMode }
#- { key: Y, mods: Control, mode: Vi|~Search, action: ScrollLineUp }
#- { key: E, mods: Control, mode: Vi|~Search, action: ScrollLineDown }
#- { key: G, mode: Vi|~Search, action: ScrollToTop }
#- { key: G, mods: Shift, mode: Vi|~Search, action: ScrollToBottom }
#- { key: B, mods: Control, mode: Vi|~Search, action: ScrollPageUp }
#- { key: F, mods: Control, mode: Vi|~Search, action: ScrollPageDown }
#- { key: U, mods: Control, mode: Vi|~Search, action: ScrollHalfPageUp }
#- { key: D, mods: Control, mode: Vi|~Search, action: ScrollHalfPageDown }
#- { key: Y, mode: Vi|~Search, action: Copy }
#- { key: Y, mode: Vi|~Search, action: ClearSelection }
#- { key: Copy, mode: Vi|~Search, action: ClearSelection }
#- { key: V, mode: Vi|~Search, action: ToggleNormalSelection }
#- { key: V, mods: Shift, mode: Vi|~Search, action: ToggleLineSelection }
#- { key: V, mods: Control, mode: Vi|~Search, action: ToggleBlockSelection }
#- { key: V, mods: Alt, mode: Vi|~Search, action: ToggleSemanticSelection }
#- { key: Return, mode: Vi|~Search, action: Open }
#- { key: K, mode: Vi|~Search, action: Up }
#- { key: J, mode: Vi|~Search, action: Down }
#- { key: H, mode: Vi|~Search, action: Left }
#- { key: L, mode: Vi|~Search, action: Right }
#- { key: Up, mode: Vi|~Search, action: Up }
#- { key: Down, mode: Vi|~Search, action: Down }
#- { key: Left, mode: Vi|~Search, action: Left }
#- { key: Right, mode: Vi|~Search, action: Right }
#- { key: Key0, mode: Vi|~Search, action: First }
#- { key: Key4, mods: Shift, mode: Vi|~Search, action: Last }
#- { key: Key6, mods: Shift, mode: Vi|~Search, action: FirstOccupied }
#- { key: H, mods: Shift, mode: Vi|~Search, action: High }
#- { key: M, mods: Shift, mode: Vi|~Search, action: Middle }
#- { key: L, mods: Shift, mode: Vi|~Search, action: Low }
#- { key: B, mode: Vi|~Search, action: SemanticLeft }
#- { key: W, mode: Vi|~Search, action: SemanticRight }
#- { key: E, mode: Vi|~Search, action: SemanticRightEnd }
#- { key: B, mods: Shift, mode: Vi|~Search, action: WordLeft }
#- { key: W, mods: Shift, mode: Vi|~Search, action: WordRight }
#- { key: E, mods: Shift, mode: Vi|~Search, action: WordRightEnd }
#- { key: Key5, mods: Shift, mode: Vi|~Search, action: Bracket }
#- { key: Slash, mode: Vi|~Search, action: SearchForward }
#- { key: Slash, mods: Shift, mode: Vi|~Search, action: SearchBackward }
#- { key: N, mode: Vi|~Search, action: SearchNext }
#- { key: N, mods: Shift, mode: Vi|~Search, action: SearchPrevious }
# Search Mode
#- { key: Return, mode: Search|Vi, action: SearchConfirm }
#- { key: Escape, mode: Search, action: SearchCancel }
#- { key: C, mods: Control, mode: Search, action: SearchCancel }
#- { key: U, mods: Control, mode: Search, action: SearchClear }
#- { key: W, mods: Control, mode: Search, action: SearchDeleteWord }
#- { key: P, mods: Control, mode: Search, action: SearchHistoryPrevious }
#- { key: N, mods: Control, mode: Search, action: SearchHistoryNext }
#- { key: Up, mode: Search, action: SearchHistoryPrevious }
#- { key: Down, mode: Search, action: SearchHistoryNext }
#- { key: Return, mode: Search|~Vi, action: SearchFocusNext }
#- { key: Return, mods: Shift, mode: Search|~Vi, action: SearchFocusPrevious }
# (Windows, Linux, and BSD only)
#- { key: V, mods: Control|Shift, mode: ~Vi, action: Paste }
#- { key: C, mods: Control|Shift, action: Copy }
#- { key: F, mods: Control|Shift, mode: ~Search, action: SearchForward }
#- { key: B, mods: Control|Shift, mode: ~Search, action: SearchBackward }
#- { key: C, mods: Control|Shift, mode: Vi|~Search, action: ClearSelection }
#- { key: Insert, mods: Shift, action: PasteSelection }
#- { key: Key0, mods: Control, action: ResetFontSize }
#- { key: Equals, mods: Control, action: IncreaseFontSize }
#- { key: Plus, mods: Control, action: IncreaseFontSize }
#- { key: NumpadAdd, mods: Control, action: IncreaseFontSize }
#- { key: Minus, mods: Control, action: DecreaseFontSize }
#- { key: NumpadSubtract, mods: Control, action: DecreaseFontSize }
# (Windows only)
#- { key: Return, mods: Alt, action: ToggleFullscreen }
# (macOS only)
#- { key: K, mods: Command, mode: ~Vi|~Search, chars: "\x0c" }
#- { key: K, mods: Command, mode: ~Vi|~Search, action: ClearHistory }
#- { key: Key0, mods: Command, action: ResetFontSize }
#- { key: Equals, mods: Command, action: IncreaseFontSize }
#- { key: Plus, mods: Command, action: IncreaseFontSize }
#- { key: NumpadAdd, mods: Command, action: IncreaseFontSize }
#- { key: Minus, mods: Command, action: DecreaseFontSize }
#- { key: NumpadSubtract, mods: Command, action: DecreaseFontSize }
#- { key: V, mods: Command, action: Paste }
#- { key: C, mods: Command, action: Copy }
#- { key: C, mods: Command, mode: Vi|~Search, action: ClearSelection }
#- { key: H, mods: Command, action: Hide }
#- { key: H, mods: Command|Alt, action: HideOtherApplications }
#- { key: M, mods: Command, action: Minimize }
#- { key: Q, mods: Command, action: Quit }
#- { key: W, mods: Command, action: Quit }
#- { key: N, mods: Command, action: SpawnNewInstance }
#- { key: F, mods: Command|Control, action: ToggleFullscreen }
#- { key: F, mods: Command, mode: ~Search, action: SearchForward }
#- { key: B, mods: Command, mode: ~Search, action: SearchBackward }
#debug:
# Display the time it takes to redraw each frame.
#render_timer: false
# Keep the log file after quitting Alacritty.
#persistent_logging: false
# Log level
#
# Values for `log_level`:
# - Off
# - Error
# - Warn
# - Info
# - Debug
# - Trace
#log_level: Warn
# Print all received window events.
#print_events: false
colors:
name: Alabaster
author: tonsky
primary:
background: "#F7F7F7"
foreground: "#000000"
cursor:
text: "#448C27"
cursor: "#000000"
normal:
black: "#000000"
red: "#AA3731"
green: "#448C27"
yellow: "#CB9000"
blue: "#325CC0"
magenta: "#7A3E9D"
cyan: "#0083B2"
white: "#BBBBBB"
bright:
black: "#777777"
red: "#F05050"
green: "#60CB00"
yellow: "#FFBC5D"
blue: "#007ACC"
magenta: "#E64CE6"
cyan: "#00AACB"
white: "#FFFFFF"
theme: Alabaster

View File

@@ -0,0 +1,648 @@
# Configuration for Alacritty, the GPU enhanced terminal emulator.
# Import additional configuration files
#
# Imports are loaded in order, skipping all missing files, with the importing
# file being loaded last. If a field is already present in a previous import, it
# will be replaced.
#
# All imports must either be absolute paths starting with `/`, or paths relative
# to the user's home directory starting with `~/`.
import:
- ~/.config/alacritty/ats-theme.yml
# Any items in the `env` entry below will be added as
# environment variables. Some entries may override variables
# set by alacritty itself.
env:
TERM: xterm-256color
window:
# Window dimensions (changes require restart)
#
# Number of lines/columns (not pixels) in the terminal. The number of columns
# must be at least `2`, while using a value of `0` for columns and lines will
# fall back to the window manager's recommended size.
#dimensions:
# columns: 0
# lines: 0
# Window position (changes require restart)
#
# Specified in number of pixels.
# If the position is not set, the window manager will handle the placement.
#position:
# x: 0
# y: 0
# Window padding (changes require restart)
#
# Blank space added around the window in pixels. This padding is scaled
# by DPI and the specified value is always added at both opposing sides.
#padding:
# x: 0
# y: 0
# Spread additional padding evenly around the terminal content.
#dynamic_padding: false
# Window decorations
#
# Values for `decorations`:
# - full: Borders and title bar
# - none: Neither borders nor title bar
#
# Values for `decorations` (macOS only):
# - transparent: Title bar, transparent background and title bar buttons
# - buttonless: Title bar, transparent background and no title bar buttons
#decorations: full
# Background opacity
#
# Window opacity as a floating point number from `0.0` to `1.0`.
# The value `0.0` is completely transparent and `1.0` is opaque.
opacity: 0.94
# Startup Mode (changes require restart)
#
# Values for `startup_mode`:
# - Windowed
# - Maximized
# - Fullscreen
#
# Values for `startup_mode` (macOS only):
# - SimpleFullscreen
#startup_mode: Windowed
# Window title
#title: Alacritty
# Allow terminal applications to change Alacritty's window title.
#dynamic_title: true
# Window class (Linux/BSD only):
#class:
# Application instance name
#instance: Alacritty
# General application class
#general: Alacritty
# GTK theme variant (Linux/BSD only)
#
# Override the variant of the GTK theme. Commonly supported values are `dark`
# and `light`. Set this to `None` to use the default theme variant.
#gtk_theme_variant: None
#scrolling:
# Maximum number of lines in the scrollback buffer.
# Specifying '0' will disable scrolling.
#history: 10000
# Scrolling distance multiplier.
#multiplier: 3
font:
normal:
family: IBM Plex Mono
bold:
family: IBM Plex Mono
style: Bold
size: 10
# Bell
#
# The bell is rung every time the BEL control character is received.
#bell:
# Visual Bell Animation
#
# Animation effect for flashing the screen when the visual bell is rung.
#
# Values for `animation`:
# - Ease
# - EaseOut
# - EaseOutSine
# - EaseOutQuad
# - EaseOutCubic
# - EaseOutQuart
# - EaseOutQuint
# - EaseOutExpo
# - EaseOutCirc
# - Linear
#animation: EaseOutExpo
# Duration of the visual bell flash in milliseconds. A `duration` of `0` will
# disable the visual bell animation.
#duration: 0
# Visual bell animation color.
#color: '#ffffff'
# Bell Command
#
# This program is executed whenever the bell is rung.
#
# When set to `command: None`, no command will be executed.
#
# Example:
# command:
# program: notify-send
# args: ["Hello, World!"]
#
#command: None
#selection:
# This string contains all characters that are used as separators for
# "semantic words" in Alacritty.
#semantic_escape_chars: ",│`|:\"' ()[]{}<>\t"
# When set to `true`, selected text will be copied to the primary clipboard.
#save_to_clipboard: false
cursor:
# Cursor style
style:
# Cursor shape
#
# Values for `shape`:
# - ▇ Block
# - _ Underline
# - | Beam
shape: Underline
# Cursor blinking state
#
# Values for `blinking`:
# - Never: Prevent the cursor from ever blinking
# - Off: Disable blinking by default
# - On: Enable blinking by default
# - Always: Force the cursor to always blink
#blinking: Off
# Vi mode cursor style
#
# If the vi mode cursor style is `None` or not specified, it will fall back to
# the style of the active value of the normal cursor.
#
# See `cursor.style` for available options.
#vi_mode_style: None
# Cursor blinking interval in milliseconds.
#blink_interval: 750
# If this is `true`, the cursor will be rendered as a hollow box when the
# window is not focused.
#unfocused_hollow: true
# Thickness of the cursor relative to the cell width as floating point number
# from `0.0` to `1.0`.
#thickness: 0.15
# Live config reload (changes require restart)
#live_config_reload: true
# Shell
#
# You can set `shell.program` to the path of your favorite shell, e.g.
# `/bin/fish`. Entries in `shell.args` are passed unmodified as arguments to the
# shell.
#
# Default:
# - (macOS) /bin/bash --login
# - (Linux/BSD) user login shell
# - (Windows) powershell
#shell:
# program: /bin/bash
# args:
# - --login
# Startup directory
#
# Directory the shell is started in. If this is unset, or `None`, the working
# directory of the parent process will be used.
#working_directory: None
# Send ESC (\x1b) before characters when alt is pressed.
#alt_send_esc: true
# Offer IPC using `alacritty msg` (unix only)
ipc_socket: true
mouse:
# Click settings
#
# The `double_click` and `triple_click` settings control the time
# alacritty should wait for accepting multiple clicks as one double
# or triple click.
#double_click: { threshold: 300 }
#triple_click: { threshold: 300 }
# If this is `true`, the cursor is temporarily hidden when typing.
hide_when_typing: false
# Regex hints
#
# Terminal hints can be used to find text in the visible part of the terminal
# and pipe it to other applications.
#hints:
# Keys used for the hint labels.
#alphabet: "jfkdls;ahgurieowpq"
# List with all available hints
#
# Each hint must have a `regex` and either an `action` or a `command` field.
# The fields `mouse`, `binding` and `post_processing` are optional.
#
# The fields `command`, `binding.key`, `binding.mods`, `binding.mode` and
# `mouse.mods` accept the same values as they do in the `key_bindings` section.
#
# The `mouse.enabled` field controls if the hint should be underlined while
# the mouse with all `mouse.mods` keys held or the vi mode cursor is above it.
#
# If the `post_processing` field is set to `true`, heuristics will be used to
# shorten the match if there are characters likely not to be part of the hint
# (e.g. a trailing `.`). This is most useful for URIs.
#
# Values for `action`:
# - Copy
# Copy the hint's text to the clipboard.
# - Paste
# Paste the hint's text to the terminal or search.
# - Select
# Select the hint's text.
# - MoveViModeCursor
# Move the vi mode cursor to the beginning of the hint.
#enabled:
# - regex: "(ipfs:|ipns:|magnet:|mailto:|gemini:|gopher:|https:|http:|news:|file:|git:|ssh:|ftp:)\
# [^\u0000-\u001F\u007F-\u009F<>\"\\s{-}\\^⟨⟩`]+"
# command: xdg-open
# post_processing: true
# mouse:
# enabled: true
# mods: None
# binding:
# key: U
# mods: Control|Shift
# Mouse bindings
#
# Mouse bindings are specified as a list of objects, much like the key
# bindings further below.
#
# To trigger mouse bindings when an application running within Alacritty
# captures the mouse, the `Shift` modifier is automatically added as a
# requirement.
#
# Each mouse binding will specify a:
#
# - `mouse`:
#
# - Middle
# - Left
# - Right
# - Numeric identifier such as `5`
#
# - `action` (see key bindings for actions not exclusive to mouse mode)
#
# - Mouse exclusive actions:
#
# - ExpandSelection
# Expand the selection to the current mouse cursor location.
#
# And optionally:
#
# - `mods` (see key bindings)
#mouse_bindings:
# - { mouse: Right, action: ExpandSelection }
# - { mouse: Right, mods: Control, action: ExpandSelection }
# - { mouse: Middle, mode: ~Vi, action: PasteSelection }
# Key bindings
#
# Key bindings are specified as a list of objects. For example, this is the
# default paste binding:
#
# `- { key: V, mods: Control|Shift, action: Paste }`
#
# Each key binding will specify a:
#
# - `key`: Identifier of the key pressed
#
# - A-Z
# - F1-F24
# - Key0-Key9
#
# A full list with available key codes can be found here:
# https://docs.rs/glutin/*/glutin/event/enum.VirtualKeyCode.html#variants
#
# Instead of using the name of the keys, the `key` field also supports using
# the scancode of the desired key. Scancodes have to be specified as a
# decimal number. This command will allow you to display the hex scancodes
# for certain keys:
#
# `showkey --scancodes`.
#
# Then exactly one of:
#
# - `chars`: Send a byte sequence to the running application
#
# The `chars` field writes the specified string to the terminal. This makes
# it possible to pass escape sequences. To find escape codes for bindings
# like `PageUp` (`"\x1b[5~"`), you can run the command `showkey -a` outside
# of tmux. Note that applications use terminfo to map escape sequences back
# to keys. It is therefore required to update the terminfo when changing an
# escape sequence.
#
# - `action`: Execute a predefined action
#
# - ToggleViMode
# - SearchForward
# Start searching toward the right of the search origin.
# - SearchBackward
# Start searching toward the left of the search origin.
# - Copy
# - Paste
# - IncreaseFontSize
# - DecreaseFontSize
# - ResetFontSize
# - ScrollPageUp
# - ScrollPageDown
# - ScrollHalfPageUp
# - ScrollHalfPageDown
# - ScrollLineUp
# - ScrollLineDown
# - ScrollToTop
# - ScrollToBottom
# - ClearHistory
# Remove the terminal's scrollback history.
# - Hide
# Hide the Alacritty window.
# - Minimize
# Minimize the Alacritty window.
# - Quit
# Quit Alacritty.
# - ToggleFullscreen
# - SpawnNewInstance
# Spawn a new instance of Alacritty.
# - CreateNewWindow
# Create a new Alacritty window from the current process.
# - ClearLogNotice
# Clear Alacritty's UI warning and error notice.
# - ClearSelection
# Remove the active selection.
# - ReceiveChar
# - None
#
# - Vi mode exclusive actions:
#
# - Open
# Perform the action of the first matching hint under the vi mode cursor
# with `mouse.enabled` set to `true`.
# - ToggleNormalSelection
# - ToggleLineSelection
# - ToggleBlockSelection
# - ToggleSemanticSelection
# Toggle semantic selection based on `selection.semantic_escape_chars`.
#
# - Vi mode exclusive cursor motion actions:
#
# - Up
# One line up.
# - Down
# One line down.
# - Left
# One character left.
# - Right
# One character right.
# - First
# First column, or beginning of the line when already at the first column.
# - Last
# Last column, or beginning of the line when already at the last column.
# - FirstOccupied
# First non-empty cell in this terminal row, or first non-empty cell of
# the line when already at the first cell of the row.
# - High
# Top of the screen.
# - Middle
# Center of the screen.
# - Low
# Bottom of the screen.
# - SemanticLeft
# Start of the previous semantically separated word.
# - SemanticRight
# Start of the next semantically separated word.
# - SemanticLeftEnd
# End of the previous semantically separated word.
# - SemanticRightEnd
# End of the next semantically separated word.
# - WordLeft
# Start of the previous whitespace separated word.
# - WordRight
# Start of the next whitespace separated word.
# - WordLeftEnd
# End of the previous whitespace separated word.
# - WordRightEnd
# End of the next whitespace separated word.
# - Bracket
# Character matching the bracket at the cursor's location.
# - SearchNext
# Beginning of the next match.
# - SearchPrevious
# Beginning of the previous match.
# - SearchStart
# Start of the match to the left of the vi mode cursor.
# - SearchEnd
# End of the match to the right of the vi mode cursor.
#
# - Search mode exclusive actions:
# - SearchFocusNext
# Move the focus to the next search match.
# - SearchFocusPrevious
# Move the focus to the previous search match.
# - SearchConfirm
# - SearchCancel
# - SearchClear
# Reset the search regex.
# - SearchDeleteWord
# Delete the last word in the search regex.
# - SearchHistoryPrevious
# Go to the previous regex in the search history.
# - SearchHistoryNext
# Go to the next regex in the search history.
#
# - macOS exclusive actions:
# - ToggleSimpleFullscreen
# Enter fullscreen without occupying another space.
#
# - Linux/BSD exclusive actions:
#
# - CopySelection
# Copy from the selection buffer.
# - PasteSelection
# Paste from the selection buffer.
#
# - `command`: Fork and execute a specified command plus arguments
#
# The `command` field must be a map containing a `program` string and an
# `args` array of command line parameter strings. For example:
# `{ program: "alacritty", args: ["-e", "vttest"] }`
#
# And optionally:
#
# - `mods`: Key modifiers to filter binding actions
#
# - Command
# - Control
# - Option
# - Super
# - Shift
# - Alt
#
# Multiple `mods` can be combined using `|` like this:
# `mods: Control|Shift`.
# Whitespace and capitalization are relevant and must match the example.
#
# - `mode`: Indicate a binding for only specific terminal reported modes
#
# This is mainly used to send applications the correct escape sequences
# when in different modes.
#
# - AppCursor
# - AppKeypad
# - Search
# - Alt
# - Vi
#
# A `~` operator can be used before a mode to apply the binding whenever
# the mode is *not* active, e.g. `~Alt`.
#
# Bindings are always filled by default, but will be replaced when a new
# binding with the same triggers is defined. To unset a default binding, it can
# be mapped to the `ReceiveChar` action. Alternatively, you can use `None` for
# a no-op if you do not wish to receive input characters for that binding.
#
# If the same trigger is assigned to multiple actions, all of them are executed
# in the order they were defined in.
key_bindings:
- {
key: Grave,
mods: Control,
mode: ~Search,
action: ToggleViMode
}
#- { key: Paste, action: Paste }
#- { key: Copy, action: Copy }
#- { key: L, mods: Control, action: ClearLogNotice }
#- { key: L, mods: Control, mode: ~Vi|~Search, chars: "\x0c" }
#- { key: PageUp, mods: Shift, mode: ~Alt, action: ScrollPageUp, }
#- { key: PageDown, mods: Shift, mode: ~Alt, action: ScrollPageDown }
#- { key: Home, mods: Shift, mode: ~Alt, action: ScrollToTop, }
#- { key: End, mods: Shift, mode: ~Alt, action: ScrollToBottom }
# Vi Mode
#- { key: Space, mods: Shift|Control, mode: ~Search, action: ToggleViMode }
#- { key: Space, mods: Shift|Control, mode: Vi|~Search, action: ScrollToBottom }
#- { key: Escape, mode: Vi|~Search, action: ClearSelection }
#- { key: I, mode: Vi|~Search, action: ToggleViMode }
#- { key: I, mode: Vi|~Search, action: ScrollToBottom }
#- { key: C, mods: Control, mode: Vi|~Search, action: ToggleViMode }
#- { key: Y, mods: Control, mode: Vi|~Search, action: ScrollLineUp }
#- { key: E, mods: Control, mode: Vi|~Search, action: ScrollLineDown }
#- { key: G, mode: Vi|~Search, action: ScrollToTop }
#- { key: G, mods: Shift, mode: Vi|~Search, action: ScrollToBottom }
#- { key: B, mods: Control, mode: Vi|~Search, action: ScrollPageUp }
#- { key: F, mods: Control, mode: Vi|~Search, action: ScrollPageDown }
#- { key: U, mods: Control, mode: Vi|~Search, action: ScrollHalfPageUp }
#- { key: D, mods: Control, mode: Vi|~Search, action: ScrollHalfPageDown }
#- { key: Y, mode: Vi|~Search, action: Copy }
#- { key: Y, mode: Vi|~Search, action: ClearSelection }
#- { key: Copy, mode: Vi|~Search, action: ClearSelection }
#- { key: V, mode: Vi|~Search, action: ToggleNormalSelection }
#- { key: V, mods: Shift, mode: Vi|~Search, action: ToggleLineSelection }
#- { key: V, mods: Control, mode: Vi|~Search, action: ToggleBlockSelection }
#- { key: V, mods: Alt, mode: Vi|~Search, action: ToggleSemanticSelection }
#- { key: Return, mode: Vi|~Search, action: Open }
#- { key: K, mode: Vi|~Search, action: Up }
#- { key: J, mode: Vi|~Search, action: Down }
#- { key: H, mode: Vi|~Search, action: Left }
#- { key: L, mode: Vi|~Search, action: Right }
#- { key: Up, mode: Vi|~Search, action: Up }
#- { key: Down, mode: Vi|~Search, action: Down }
#- { key: Left, mode: Vi|~Search, action: Left }
#- { key: Right, mode: Vi|~Search, action: Right }
#- { key: Key0, mode: Vi|~Search, action: First }
#- { key: Key4, mods: Shift, mode: Vi|~Search, action: Last }
#- { key: Key6, mods: Shift, mode: Vi|~Search, action: FirstOccupied }
#- { key: H, mods: Shift, mode: Vi|~Search, action: High }
#- { key: M, mods: Shift, mode: Vi|~Search, action: Middle }
#- { key: L, mods: Shift, mode: Vi|~Search, action: Low }
#- { key: B, mode: Vi|~Search, action: SemanticLeft }
#- { key: W, mode: Vi|~Search, action: SemanticRight }
#- { key: E, mode: Vi|~Search, action: SemanticRightEnd }
#- { key: B, mods: Shift, mode: Vi|~Search, action: WordLeft }
#- { key: W, mods: Shift, mode: Vi|~Search, action: WordRight }
#- { key: E, mods: Shift, mode: Vi|~Search, action: WordRightEnd }
#- { key: Key5, mods: Shift, mode: Vi|~Search, action: Bracket }
#- { key: Slash, mode: Vi|~Search, action: SearchForward }
#- { key: Slash, mods: Shift, mode: Vi|~Search, action: SearchBackward }
#- { key: N, mode: Vi|~Search, action: SearchNext }
#- { key: N, mods: Shift, mode: Vi|~Search, action: SearchPrevious }
# Search Mode
#- { key: Return, mode: Search|Vi, action: SearchConfirm }
#- { key: Escape, mode: Search, action: SearchCancel }
#- { key: C, mods: Control, mode: Search, action: SearchCancel }
#- { key: U, mods: Control, mode: Search, action: SearchClear }
#- { key: W, mods: Control, mode: Search, action: SearchDeleteWord }
#- { key: P, mods: Control, mode: Search, action: SearchHistoryPrevious }
#- { key: N, mods: Control, mode: Search, action: SearchHistoryNext }
#- { key: Up, mode: Search, action: SearchHistoryPrevious }
#- { key: Down, mode: Search, action: SearchHistoryNext }
#- { key: Return, mode: Search|~Vi, action: SearchFocusNext }
#- { key: Return, mods: Shift, mode: Search|~Vi, action: SearchFocusPrevious }
# (Windows, Linux, and BSD only)
#- { key: V, mods: Control|Shift, mode: ~Vi, action: Paste }
#- { key: C, mods: Control|Shift, action: Copy }
#- { key: F, mods: Control|Shift, mode: ~Search, action: SearchForward }
#- { key: B, mods: Control|Shift, mode: ~Search, action: SearchBackward }
#- { key: C, mods: Control|Shift, mode: Vi|~Search, action: ClearSelection }
#- { key: Insert, mods: Shift, action: PasteSelection }
#- { key: Key0, mods: Control, action: ResetFontSize }
#- { key: Equals, mods: Control, action: IncreaseFontSize }
#- { key: Plus, mods: Control, action: IncreaseFontSize }
#- { key: NumpadAdd, mods: Control, action: IncreaseFontSize }
#- { key: Minus, mods: Control, action: DecreaseFontSize }
#- { key: NumpadSubtract, mods: Control, action: DecreaseFontSize }
# (Windows only)
#- { key: Return, mods: Alt, action: ToggleFullscreen }
# (macOS only)
#- { key: K, mods: Command, mode: ~Vi|~Search, chars: "\x0c" }
#- { key: K, mods: Command, mode: ~Vi|~Search, action: ClearHistory }
#- { key: Key0, mods: Command, action: ResetFontSize }
#- { key: Equals, mods: Command, action: IncreaseFontSize }
#- { key: Plus, mods: Command, action: IncreaseFontSize }
#- { key: NumpadAdd, mods: Command, action: IncreaseFontSize }
#- { key: Minus, mods: Command, action: DecreaseFontSize }
#- { key: NumpadSubtract, mods: Command, action: DecreaseFontSize }
#- { key: V, mods: Command, action: Paste }
#- { key: C, mods: Command, action: Copy }
#- { key: C, mods: Command, mode: Vi|~Search, action: ClearSelection }
#- { key: H, mods: Command, action: Hide }
#- { key: H, mods: Command|Alt, action: HideOtherApplications }
#- { key: M, mods: Command, action: Minimize }
#- { key: Q, mods: Command, action: Quit }
#- { key: W, mods: Command, action: Quit }
#- { key: N, mods: Command, action: SpawnNewInstance }
#- { key: F, mods: Command|Control, action: ToggleFullscreen }
#- { key: F, mods: Command, mode: ~Search, action: SearchForward }
#- { key: B, mods: Command, mode: ~Search, action: SearchBackward }
#debug:
# Display the time it takes to redraw each frame.
#render_timer: false
# Keep the log file after quitting Alacritty.
#persistent_logging: false
# Log level
#
# Values for `log_level`:
# - Off
# - Error
# - Warn
# - Info
# - Debug
# - Trace
#log_level: Warn
# Print all received window events.
#print_events: false
colors:
name: Alabaster
author: tonsky
primary:
background: "#F7F7F7"
foreground: "#000000"
cursor:
text: "#448C27"
cursor: "#000000"
normal:
black: "#000000"
red: "#AA3731"
green: "#448C27"
yellow: "#CB9000"
blue: "#325CC0"
magenta: "#7A3E9D"
cyan: "#0083B2"
white: "#BBBBBB"
bright:
black: "#777777"
red: "#F05050"
green: "#60CB00"
yellow: "#FFBC5D"
blue: "#007ACC"
magenta: "#E64CE6"
cyan: "#00AACB"
white: "#FFFFFF"
theme: Alabaster

View File

@@ -0,0 +1,648 @@
# Configuration for Alacritty, the GPU enhanced terminal emulator.
# Import additional configuration files
#
# Imports are loaded in order, skipping all missing files, with the importing
# file being loaded last. If a field is already present in a previous import, it
# will be replaced.
#
# All imports must either be absolute paths starting with `/`, or paths relative
# to the user's home directory starting with `~/`.
import:
- ~/.config/alacritty/ats-theme.yml
# Any items in the `env` entry below will be added as
# environment variables. Some entries may override variables
# set by alacritty itself.
env:
TERM: xterm-256color
window:
# Window dimensions (changes require restart)
#
# Number of lines/columns (not pixels) in the terminal. The number of columns
# must be at least `2`, while using a value of `0` for columns and lines will
# fall back to the window manager's recommended size.
#dimensions:
# columns: 0
# lines: 0
# Window position (changes require restart)
#
# Specified in number of pixels.
# If the position is not set, the window manager will handle the placement.
#position:
# x: 0
# y: 0
# Window padding (changes require restart)
#
# Blank space added around the window in pixels. This padding is scaled
# by DPI and the specified value is always added at both opposing sides.
#padding:
# x: 0
# y: 0
# Spread additional padding evenly around the terminal content.
#dynamic_padding: false
# Window decorations
#
# Values for `decorations`:
# - full: Borders and title bar
# - none: Neither borders nor title bar
#
# Values for `decorations` (macOS only):
# - transparent: Title bar, transparent background and title bar buttons
# - buttonless: Title bar, transparent background and no title bar buttons
#decorations: full
# Background opacity
#
# Window opacity as a floating point number from `0.0` to `1.0`.
# The value `0.0` is completely transparent and `1.0` is opaque.
opacity: 0.94
# Startup Mode (changes require restart)
#
# Values for `startup_mode`:
# - Windowed
# - Maximized
# - Fullscreen
#
# Values for `startup_mode` (macOS only):
# - SimpleFullscreen
#startup_mode: Windowed
# Window title
#title: Alacritty
# Allow terminal applications to change Alacritty's window title.
#dynamic_title: true
# Window class (Linux/BSD only):
#class:
# Application instance name
#instance: Alacritty
# General application class
#general: Alacritty
# GTK theme variant (Linux/BSD only)
#
# Override the variant of the GTK theme. Commonly supported values are `dark`
# and `light`. Set this to `None` to use the default theme variant.
#gtk_theme_variant: None
#scrolling:
# Maximum number of lines in the scrollback buffer.
# Specifying '0' will disable scrolling.
#history: 10000
# Scrolling distance multiplier.
#multiplier: 3
font:
normal:
family: IBM Plex Mono
bold:
family: IBM Plex Mono
style: Bold
size: 10
# Bell
#
# The bell is rung every time the BEL control character is received.
#bell:
# Visual Bell Animation
#
# Animation effect for flashing the screen when the visual bell is rung.
#
# Values for `animation`:
# - Ease
# - EaseOut
# - EaseOutSine
# - EaseOutQuad
# - EaseOutCubic
# - EaseOutQuart
# - EaseOutQuint
# - EaseOutExpo
# - EaseOutCirc
# - Linear
#animation: EaseOutExpo
# Duration of the visual bell flash in milliseconds. A `duration` of `0` will
# disable the visual bell animation.
#duration: 0
# Visual bell animation color.
#color: '#ffffff'
# Bell Command
#
# This program is executed whenever the bell is rung.
#
# When set to `command: None`, no command will be executed.
#
# Example:
# command:
# program: notify-send
# args: ["Hello, World!"]
#
#command: None
#selection:
# This string contains all characters that are used as separators for
# "semantic words" in Alacritty.
#semantic_escape_chars: ",│`|:\"' ()[]{}<>\t"
# When set to `true`, selected text will be copied to the primary clipboard.
#save_to_clipboard: false
cursor:
# Cursor style
style:
# Cursor shape
#
# Values for `shape`:
# - ▇ Block
# - _ Underline
# - | Beam
shape: Underline
# Cursor blinking state
#
# Values for `blinking`:
# - Never: Prevent the cursor from ever blinking
# - Off: Disable blinking by default
# - On: Enable blinking by default
# - Always: Force the cursor to always blink
#blinking: Off
# Vi mode cursor style
#
# If the vi mode cursor style is `None` or not specified, it will fall back to
# the style of the active value of the normal cursor.
#
# See `cursor.style` for available options.
#vi_mode_style: None
# Cursor blinking interval in milliseconds.
#blink_interval: 750
# If this is `true`, the cursor will be rendered as a hollow box when the
# window is not focused.
#unfocused_hollow: true
# Thickness of the cursor relative to the cell width as floating point number
# from `0.0` to `1.0`.
#thickness: 0.15
# Live config reload (changes require restart)
#live_config_reload: true
# Shell
#
# You can set `shell.program` to the path of your favorite shell, e.g.
# `/bin/fish`. Entries in `shell.args` are passed unmodified as arguments to the
# shell.
#
# Default:
# - (macOS) /bin/bash --login
# - (Linux/BSD) user login shell
# - (Windows) powershell
#shell:
# program: /bin/bash
# args:
# - --login
# Startup directory
#
# Directory the shell is started in. If this is unset, or `None`, the working
# directory of the parent process will be used.
#working_directory: None
# Send ESC (\x1b) before characters when alt is pressed.
#alt_send_esc: true
# Offer IPC using `alacritty msg` (unix only)
ipc_socket: true
mouse:
# Click settings
#
# The `double_click` and `triple_click` settings control the time
# alacritty should wait for accepting multiple clicks as one double
# or triple click.
#double_click: { threshold: 300 }
#triple_click: { threshold: 300 }
# If this is `true`, the cursor is temporarily hidden when typing.
hide_when_typing: false
# Regex hints
#
# Terminal hints can be used to find text in the visible part of the terminal
# and pipe it to other applications.
#hints:
# Keys used for the hint labels.
#alphabet: "jfkdls;ahgurieowpq"
# List with all available hints
#
# Each hint must have a `regex` and either an `action` or a `command` field.
# The fields `mouse`, `binding` and `post_processing` are optional.
#
# The fields `command`, `binding.key`, `binding.mods`, `binding.mode` and
# `mouse.mods` accept the same values as they do in the `key_bindings` section.
#
# The `mouse.enabled` field controls if the hint should be underlined while
# the mouse with all `mouse.mods` keys held or the vi mode cursor is above it.
#
# If the `post_processing` field is set to `true`, heuristics will be used to
# shorten the match if there are characters likely not to be part of the hint
# (e.g. a trailing `.`). This is most useful for URIs.
#
# Values for `action`:
# - Copy
# Copy the hint's text to the clipboard.
# - Paste
# Paste the hint's text to the terminal or search.
# - Select
# Select the hint's text.
# - MoveViModeCursor
# Move the vi mode cursor to the beginning of the hint.
#enabled:
# - regex: "(ipfs:|ipns:|magnet:|mailto:|gemini:|gopher:|https:|http:|news:|file:|git:|ssh:|ftp:)\
# [^\u0000-\u001F\u007F-\u009F<>\"\\s{-}\\^⟨⟩`]+"
# command: xdg-open
# post_processing: true
# mouse:
# enabled: true
# mods: None
# binding:
# key: U
# mods: Control|Shift
# Mouse bindings
#
# Mouse bindings are specified as a list of objects, much like the key
# bindings further below.
#
# To trigger mouse bindings when an application running within Alacritty
# captures the mouse, the `Shift` modifier is automatically added as a
# requirement.
#
# Each mouse binding will specify a:
#
# - `mouse`:
#
# - Middle
# - Left
# - Right
# - Numeric identifier such as `5`
#
# - `action` (see key bindings for actions not exclusive to mouse mode)
#
# - Mouse exclusive actions:
#
# - ExpandSelection
# Expand the selection to the current mouse cursor location.
#
# And optionally:
#
# - `mods` (see key bindings)
#mouse_bindings:
# - { mouse: Right, action: ExpandSelection }
# - { mouse: Right, mods: Control, action: ExpandSelection }
# - { mouse: Middle, mode: ~Vi, action: PasteSelection }
# Key bindings
#
# Key bindings are specified as a list of objects. For example, this is the
# default paste binding:
#
# `- { key: V, mods: Control|Shift, action: Paste }`
#
# Each key binding will specify a:
#
# - `key`: Identifier of the key pressed
#
# - A-Z
# - F1-F24
# - Key0-Key9
#
# A full list with available key codes can be found here:
# https://docs.rs/glutin/*/glutin/event/enum.VirtualKeyCode.html#variants
#
# Instead of using the name of the keys, the `key` field also supports using
# the scancode of the desired key. Scancodes have to be specified as a
# decimal number. This command will allow you to display the hex scancodes
# for certain keys:
#
# `showkey --scancodes`.
#
# Then exactly one of:
#
# - `chars`: Send a byte sequence to the running application
#
# The `chars` field writes the specified string to the terminal. This makes
# it possible to pass escape sequences. To find escape codes for bindings
# like `PageUp` (`"\x1b[5~"`), you can run the command `showkey -a` outside
# of tmux. Note that applications use terminfo to map escape sequences back
# to keys. It is therefore required to update the terminfo when changing an
# escape sequence.
#
# - `action`: Execute a predefined action
#
# - ToggleViMode
# - SearchForward
# Start searching toward the right of the search origin.
# - SearchBackward
# Start searching toward the left of the search origin.
# - Copy
# - Paste
# - IncreaseFontSize
# - DecreaseFontSize
# - ResetFontSize
# - ScrollPageUp
# - ScrollPageDown
# - ScrollHalfPageUp
# - ScrollHalfPageDown
# - ScrollLineUp
# - ScrollLineDown
# - ScrollToTop
# - ScrollToBottom
# - ClearHistory
# Remove the terminal's scrollback history.
# - Hide
# Hide the Alacritty window.
# - Minimize
# Minimize the Alacritty window.
# - Quit
# Quit Alacritty.
# - ToggleFullscreen
# - SpawnNewInstance
# Spawn a new instance of Alacritty.
# - CreateNewWindow
# Create a new Alacritty window from the current process.
# - ClearLogNotice
# Clear Alacritty's UI warning and error notice.
# - ClearSelection
# Remove the active selection.
# - ReceiveChar
# - None
#
# - Vi mode exclusive actions:
#
# - Open
# Perform the action of the first matching hint under the vi mode cursor
# with `mouse.enabled` set to `true`.
# - ToggleNormalSelection
# - ToggleLineSelection
# - ToggleBlockSelection
# - ToggleSemanticSelection
# Toggle semantic selection based on `selection.semantic_escape_chars`.
#
# - Vi mode exclusive cursor motion actions:
#
# - Up
# One line up.
# - Down
# One line down.
# - Left
# One character left.
# - Right
# One character right.
# - First
# First column, or beginning of the line when already at the first column.
# - Last
# Last column, or beginning of the line when already at the last column.
# - FirstOccupied
# First non-empty cell in this terminal row, or first non-empty cell of
# the line when already at the first cell of the row.
# - High
# Top of the screen.
# - Middle
# Center of the screen.
# - Low
# Bottom of the screen.
# - SemanticLeft
# Start of the previous semantically separated word.
# - SemanticRight
# Start of the next semantically separated word.
# - SemanticLeftEnd
# End of the previous semantically separated word.
# - SemanticRightEnd
# End of the next semantically separated word.
# - WordLeft
# Start of the previous whitespace separated word.
# - WordRight
# Start of the next whitespace separated word.
# - WordLeftEnd
# End of the previous whitespace separated word.
# - WordRightEnd
# End of the next whitespace separated word.
# - Bracket
# Character matching the bracket at the cursor's location.
# - SearchNext
# Beginning of the next match.
# - SearchPrevious
# Beginning of the previous match.
# - SearchStart
# Start of the match to the left of the vi mode cursor.
# - SearchEnd
# End of the match to the right of the vi mode cursor.
#
# - Search mode exclusive actions:
# - SearchFocusNext
# Move the focus to the next search match.
# - SearchFocusPrevious
# Move the focus to the previous search match.
# - SearchConfirm
# - SearchCancel
# - SearchClear
# Reset the search regex.
# - SearchDeleteWord
# Delete the last word in the search regex.
# - SearchHistoryPrevious
# Go to the previous regex in the search history.
# - SearchHistoryNext
# Go to the next regex in the search history.
#
# - macOS exclusive actions:
# - ToggleSimpleFullscreen
# Enter fullscreen without occupying another space.
#
# - Linux/BSD exclusive actions:
#
# - CopySelection
# Copy from the selection buffer.
# - PasteSelection
# Paste from the selection buffer.
#
# - `command`: Fork and execute a specified command plus arguments
#
# The `command` field must be a map containing a `program` string and an
# `args` array of command line parameter strings. For example:
# `{ program: "alacritty", args: ["-e", "vttest"] }`
#
# And optionally:
#
# - `mods`: Key modifiers to filter binding actions
#
# - Command
# - Control
# - Option
# - Super
# - Shift
# - Alt
#
# Multiple `mods` can be combined using `|` like this:
# `mods: Control|Shift`.
# Whitespace and capitalization are relevant and must match the example.
#
# - `mode`: Indicate a binding for only specific terminal reported modes
#
# This is mainly used to send applications the correct escape sequences
# when in different modes.
#
# - AppCursor
# - AppKeypad
# - Search
# - Alt
# - Vi
#
# A `~` operator can be used before a mode to apply the binding whenever
# the mode is *not* active, e.g. `~Alt`.
#
# Bindings are always filled by default, but will be replaced when a new
# binding with the same triggers is defined. To unset a default binding, it can
# be mapped to the `ReceiveChar` action. Alternatively, you can use `None` for
# a no-op if you do not wish to receive input characters for that binding.
#
# If the same trigger is assigned to multiple actions, all of them are executed
# in the order they were defined in.
key_bindings:
- {
key: Grave,
mods: Control,
mode: ~Search,
action: ToggleViMode
}
#- { key: Paste, action: Paste }
#- { key: Copy, action: Copy }
#- { key: L, mods: Control, action: ClearLogNotice }
#- { key: L, mods: Control, mode: ~Vi|~Search, chars: "\x0c" }
#- { key: PageUp, mods: Shift, mode: ~Alt, action: ScrollPageUp, }
#- { key: PageDown, mods: Shift, mode: ~Alt, action: ScrollPageDown }
#- { key: Home, mods: Shift, mode: ~Alt, action: ScrollToTop, }
#- { key: End, mods: Shift, mode: ~Alt, action: ScrollToBottom }
# Vi Mode
#- { key: Space, mods: Shift|Control, mode: ~Search, action: ToggleViMode }
#- { key: Space, mods: Shift|Control, mode: Vi|~Search, action: ScrollToBottom }
#- { key: Escape, mode: Vi|~Search, action: ClearSelection }
#- { key: I, mode: Vi|~Search, action: ToggleViMode }
#- { key: I, mode: Vi|~Search, action: ScrollToBottom }
#- { key: C, mods: Control, mode: Vi|~Search, action: ToggleViMode }
#- { key: Y, mods: Control, mode: Vi|~Search, action: ScrollLineUp }
#- { key: E, mods: Control, mode: Vi|~Search, action: ScrollLineDown }
#- { key: G, mode: Vi|~Search, action: ScrollToTop }
#- { key: G, mods: Shift, mode: Vi|~Search, action: ScrollToBottom }
#- { key: B, mods: Control, mode: Vi|~Search, action: ScrollPageUp }
#- { key: F, mods: Control, mode: Vi|~Search, action: ScrollPageDown }
#- { key: U, mods: Control, mode: Vi|~Search, action: ScrollHalfPageUp }
#- { key: D, mods: Control, mode: Vi|~Search, action: ScrollHalfPageDown }
#- { key: Y, mode: Vi|~Search, action: Copy }
#- { key: Y, mode: Vi|~Search, action: ClearSelection }
#- { key: Copy, mode: Vi|~Search, action: ClearSelection }
#- { key: V, mode: Vi|~Search, action: ToggleNormalSelection }
#- { key: V, mods: Shift, mode: Vi|~Search, action: ToggleLineSelection }
#- { key: V, mods: Control, mode: Vi|~Search, action: ToggleBlockSelection }
#- { key: V, mods: Alt, mode: Vi|~Search, action: ToggleSemanticSelection }
#- { key: Return, mode: Vi|~Search, action: Open }
#- { key: K, mode: Vi|~Search, action: Up }
#- { key: J, mode: Vi|~Search, action: Down }
#- { key: H, mode: Vi|~Search, action: Left }
#- { key: L, mode: Vi|~Search, action: Right }
#- { key: Up, mode: Vi|~Search, action: Up }
#- { key: Down, mode: Vi|~Search, action: Down }
#- { key: Left, mode: Vi|~Search, action: Left }
#- { key: Right, mode: Vi|~Search, action: Right }
#- { key: Key0, mode: Vi|~Search, action: First }
#- { key: Key4, mods: Shift, mode: Vi|~Search, action: Last }
#- { key: Key6, mods: Shift, mode: Vi|~Search, action: FirstOccupied }
#- { key: H, mods: Shift, mode: Vi|~Search, action: High }
#- { key: M, mods: Shift, mode: Vi|~Search, action: Middle }
#- { key: L, mods: Shift, mode: Vi|~Search, action: Low }
#- { key: B, mode: Vi|~Search, action: SemanticLeft }
#- { key: W, mode: Vi|~Search, action: SemanticRight }
#- { key: E, mode: Vi|~Search, action: SemanticRightEnd }
#- { key: B, mods: Shift, mode: Vi|~Search, action: WordLeft }
#- { key: W, mods: Shift, mode: Vi|~Search, action: WordRight }
#- { key: E, mods: Shift, mode: Vi|~Search, action: WordRightEnd }
#- { key: Key5, mods: Shift, mode: Vi|~Search, action: Bracket }
#- { key: Slash, mode: Vi|~Search, action: SearchForward }
#- { key: Slash, mods: Shift, mode: Vi|~Search, action: SearchBackward }
#- { key: N, mode: Vi|~Search, action: SearchNext }
#- { key: N, mods: Shift, mode: Vi|~Search, action: SearchPrevious }
# Search Mode
#- { key: Return, mode: Search|Vi, action: SearchConfirm }
#- { key: Escape, mode: Search, action: SearchCancel }
#- { key: C, mods: Control, mode: Search, action: SearchCancel }
#- { key: U, mods: Control, mode: Search, action: SearchClear }
#- { key: W, mods: Control, mode: Search, action: SearchDeleteWord }
#- { key: P, mods: Control, mode: Search, action: SearchHistoryPrevious }
#- { key: N, mods: Control, mode: Search, action: SearchHistoryNext }
#- { key: Up, mode: Search, action: SearchHistoryPrevious }
#- { key: Down, mode: Search, action: SearchHistoryNext }
#- { key: Return, mode: Search|~Vi, action: SearchFocusNext }
#- { key: Return, mods: Shift, mode: Search|~Vi, action: SearchFocusPrevious }
# (Windows, Linux, and BSD only)
#- { key: V, mods: Control|Shift, mode: ~Vi, action: Paste }
#- { key: C, mods: Control|Shift, action: Copy }
#- { key: F, mods: Control|Shift, mode: ~Search, action: SearchForward }
#- { key: B, mods: Control|Shift, mode: ~Search, action: SearchBackward }
#- { key: C, mods: Control|Shift, mode: Vi|~Search, action: ClearSelection }
#- { key: Insert, mods: Shift, action: PasteSelection }
#- { key: Key0, mods: Control, action: ResetFontSize }
#- { key: Equals, mods: Control, action: IncreaseFontSize }
#- { key: Plus, mods: Control, action: IncreaseFontSize }
#- { key: NumpadAdd, mods: Control, action: IncreaseFontSize }
#- { key: Minus, mods: Control, action: DecreaseFontSize }
#- { key: NumpadSubtract, mods: Control, action: DecreaseFontSize }
# (Windows only)
#- { key: Return, mods: Alt, action: ToggleFullscreen }
# (macOS only)
#- { key: K, mods: Command, mode: ~Vi|~Search, chars: "\x0c" }
#- { key: K, mods: Command, mode: ~Vi|~Search, action: ClearHistory }
#- { key: Key0, mods: Command, action: ResetFontSize }
#- { key: Equals, mods: Command, action: IncreaseFontSize }
#- { key: Plus, mods: Command, action: IncreaseFontSize }
#- { key: NumpadAdd, mods: Command, action: IncreaseFontSize }
#- { key: Minus, mods: Command, action: DecreaseFontSize }
#- { key: NumpadSubtract, mods: Command, action: DecreaseFontSize }
#- { key: V, mods: Command, action: Paste }
#- { key: C, mods: Command, action: Copy }
#- { key: C, mods: Command, mode: Vi|~Search, action: ClearSelection }
#- { key: H, mods: Command, action: Hide }
#- { key: H, mods: Command|Alt, action: HideOtherApplications }
#- { key: M, mods: Command, action: Minimize }
#- { key: Q, mods: Command, action: Quit }
#- { key: W, mods: Command, action: Quit }
#- { key: N, mods: Command, action: SpawnNewInstance }
#- { key: F, mods: Command|Control, action: ToggleFullscreen }
#- { key: F, mods: Command, mode: ~Search, action: SearchForward }
#- { key: B, mods: Command, mode: ~Search, action: SearchBackward }
#debug:
# Display the time it takes to redraw each frame.
#render_timer: false
# Keep the log file after quitting Alacritty.
#persistent_logging: false
# Log level
#
# Values for `log_level`:
# - Off
# - Error
# - Warn
# - Info
# - Debug
# - Trace
#log_level: Warn
# Print all received window events.
#print_events: false
colors:
name: Alabaster
author: tonsky
primary:
background: "#F7F7F7"
foreground: "#000000"
cursor:
text: "#448C27"
cursor: "#000000"
normal:
black: "#000000"
red: "#AA3731"
green: "#448C27"
yellow: "#CB9000"
blue: "#325CC0"
magenta: "#7A3E9D"
cyan: "#0083B2"
white: "#BBBBBB"
bright:
black: "#777777"
red: "#F05050"
green: "#60CB00"
yellow: "#FFBC5D"
blue: "#007ACC"
magenta: "#E64CE6"
cyan: "#00AACB"
white: "#FFFFFF"
theme: Alabaster

View File

@@ -0,0 +1,648 @@
# Configuration for Alacritty, the GPU enhanced terminal emulator.
# Import additional configuration files
#
# Imports are loaded in order, skipping all missing files, with the importing
# file being loaded last. If a field is already present in a previous import, it
# will be replaced.
#
# All imports must either be absolute paths starting with `/`, or paths relative
# to the user's home directory starting with `~/`.
import:
- ~/.config/alacritty/ats-theme.yml
# Any items in the `env` entry below will be added as
# environment variables. Some entries may override variables
# set by alacritty itself.
env:
TERM: xterm-256color
window:
# Window dimensions (changes require restart)
#
# Number of lines/columns (not pixels) in the terminal. The number of columns
# must be at least `2`, while using a value of `0` for columns and lines will
# fall back to the window manager's recommended size.
#dimensions:
# columns: 0
# lines: 0
# Window position (changes require restart)
#
# Specified in number of pixels.
# If the position is not set, the window manager will handle the placement.
#position:
# x: 0
# y: 0
# Window padding (changes require restart)
#
# Blank space added around the window in pixels. This padding is scaled
# by DPI and the specified value is always added at both opposing sides.
#padding:
# x: 0
# y: 0
# Spread additional padding evenly around the terminal content.
#dynamic_padding: false
# Window decorations
#
# Values for `decorations`:
# - full: Borders and title bar
# - none: Neither borders nor title bar
#
# Values for `decorations` (macOS only):
# - transparent: Title bar, transparent background and title bar buttons
# - buttonless: Title bar, transparent background and no title bar buttons
#decorations: full
# Background opacity
#
# Window opacity as a floating point number from `0.0` to `1.0`.
# The value `0.0` is completely transparent and `1.0` is opaque.
opacity: 0.94
# Startup Mode (changes require restart)
#
# Values for `startup_mode`:
# - Windowed
# - Maximized
# - Fullscreen
#
# Values for `startup_mode` (macOS only):
# - SimpleFullscreen
#startup_mode: Windowed
# Window title
#title: Alacritty
# Allow terminal applications to change Alacritty's window title.
#dynamic_title: true
# Window class (Linux/BSD only):
#class:
# Application instance name
#instance: Alacritty
# General application class
#general: Alacritty
# GTK theme variant (Linux/BSD only)
#
# Override the variant of the GTK theme. Commonly supported values are `dark`
# and `light`. Set this to `None` to use the default theme variant.
#gtk_theme_variant: None
#scrolling:
# Maximum number of lines in the scrollback buffer.
# Specifying '0' will disable scrolling.
#history: 10000
# Scrolling distance multiplier.
#multiplier: 3
font:
normal:
family: IBM Plex Mono
bold:
family: IBM Plex Mono
style: Bold
size: 10
# Bell
#
# The bell is rung every time the BEL control character is received.
#bell:
# Visual Bell Animation
#
# Animation effect for flashing the screen when the visual bell is rung.
#
# Values for `animation`:
# - Ease
# - EaseOut
# - EaseOutSine
# - EaseOutQuad
# - EaseOutCubic
# - EaseOutQuart
# - EaseOutQuint
# - EaseOutExpo
# - EaseOutCirc
# - Linear
#animation: EaseOutExpo
# Duration of the visual bell flash in milliseconds. A `duration` of `0` will
# disable the visual bell animation.
#duration: 0
# Visual bell animation color.
#color: '#ffffff'
# Bell Command
#
# This program is executed whenever the bell is rung.
#
# When set to `command: None`, no command will be executed.
#
# Example:
# command:
# program: notify-send
# args: ["Hello, World!"]
#
#command: None
#selection:
# This string contains all characters that are used as separators for
# "semantic words" in Alacritty.
#semantic_escape_chars: ",│`|:\"' ()[]{}<>\t"
# When set to `true`, selected text will be copied to the primary clipboard.
#save_to_clipboard: false
cursor:
# Cursor style
style:
# Cursor shape
#
# Values for `shape`:
# - ▇ Block
# - _ Underline
# - | Beam
shape: Underline
# Cursor blinking state
#
# Values for `blinking`:
# - Never: Prevent the cursor from ever blinking
# - Off: Disable blinking by default
# - On: Enable blinking by default
# - Always: Force the cursor to always blink
#blinking: Off
# Vi mode cursor style
#
# If the vi mode cursor style is `None` or not specified, it will fall back to
# the style of the active value of the normal cursor.
#
# See `cursor.style` for available options.
#vi_mode_style: None
# Cursor blinking interval in milliseconds.
#blink_interval: 750
# If this is `true`, the cursor will be rendered as a hollow box when the
# window is not focused.
#unfocused_hollow: true
# Thickness of the cursor relative to the cell width as floating point number
# from `0.0` to `1.0`.
#thickness: 0.15
# Live config reload (changes require restart)
#live_config_reload: true
# Shell
#
# You can set `shell.program` to the path of your favorite shell, e.g.
# `/bin/fish`. Entries in `shell.args` are passed unmodified as arguments to the
# shell.
#
# Default:
# - (macOS) /bin/bash --login
# - (Linux/BSD) user login shell
# - (Windows) powershell
#shell:
# program: /bin/bash
# args:
# - --login
# Startup directory
#
# Directory the shell is started in. If this is unset, or `None`, the working
# directory of the parent process will be used.
#working_directory: None
# Send ESC (\x1b) before characters when alt is pressed.
#alt_send_esc: true
# Offer IPC using `alacritty msg` (unix only)
ipc_socket: true
mouse:
# Click settings
#
# The `double_click` and `triple_click` settings control the time
# alacritty should wait for accepting multiple clicks as one double
# or triple click.
#double_click: { threshold: 300 }
#triple_click: { threshold: 300 }
# If this is `true`, the cursor is temporarily hidden when typing.
hide_when_typing: false
# Regex hints
#
# Terminal hints can be used to find text in the visible part of the terminal
# and pipe it to other applications.
#hints:
# Keys used for the hint labels.
#alphabet: "jfkdls;ahgurieowpq"
# List with all available hints
#
# Each hint must have a `regex` and either an `action` or a `command` field.
# The fields `mouse`, `binding` and `post_processing` are optional.
#
# The fields `command`, `binding.key`, `binding.mods`, `binding.mode` and
# `mouse.mods` accept the same values as they do in the `key_bindings` section.
#
# The `mouse.enabled` field controls if the hint should be underlined while
# the mouse with all `mouse.mods` keys held or the vi mode cursor is above it.
#
# If the `post_processing` field is set to `true`, heuristics will be used to
# shorten the match if there are characters likely not to be part of the hint
# (e.g. a trailing `.`). This is most useful for URIs.
#
# Values for `action`:
# - Copy
# Copy the hint's text to the clipboard.
# - Paste
# Paste the hint's text to the terminal or search.
# - Select
# Select the hint's text.
# - MoveViModeCursor
# Move the vi mode cursor to the beginning of the hint.
#enabled:
# - regex: "(ipfs:|ipns:|magnet:|mailto:|gemini:|gopher:|https:|http:|news:|file:|git:|ssh:|ftp:)\
# [^\u0000-\u001F\u007F-\u009F<>\"\\s{-}\\^⟨⟩`]+"
# command: xdg-open
# post_processing: true
# mouse:
# enabled: true
# mods: None
# binding:
# key: U
# mods: Control|Shift
# Mouse bindings
#
# Mouse bindings are specified as a list of objects, much like the key
# bindings further below.
#
# To trigger mouse bindings when an application running within Alacritty
# captures the mouse, the `Shift` modifier is automatically added as a
# requirement.
#
# Each mouse binding will specify a:
#
# - `mouse`:
#
# - Middle
# - Left
# - Right
# - Numeric identifier such as `5`
#
# - `action` (see key bindings for actions not exclusive to mouse mode)
#
# - Mouse exclusive actions:
#
# - ExpandSelection
# Expand the selection to the current mouse cursor location.
#
# And optionally:
#
# - `mods` (see key bindings)
#mouse_bindings:
# - { mouse: Right, action: ExpandSelection }
# - { mouse: Right, mods: Control, action: ExpandSelection }
# - { mouse: Middle, mode: ~Vi, action: PasteSelection }
# Key bindings
#
# Key bindings are specified as a list of objects. For example, this is the
# default paste binding:
#
# `- { key: V, mods: Control|Shift, action: Paste }`
#
# Each key binding will specify a:
#
# - `key`: Identifier of the key pressed
#
# - A-Z
# - F1-F24
# - Key0-Key9
#
# A full list with available key codes can be found here:
# https://docs.rs/glutin/*/glutin/event/enum.VirtualKeyCode.html#variants
#
# Instead of using the name of the keys, the `key` field also supports using
# the scancode of the desired key. Scancodes have to be specified as a
# decimal number. This command will allow you to display the hex scancodes
# for certain keys:
#
# `showkey --scancodes`.
#
# Then exactly one of:
#
# - `chars`: Send a byte sequence to the running application
#
# The `chars` field writes the specified string to the terminal. This makes
# it possible to pass escape sequences. To find escape codes for bindings
# like `PageUp` (`"\x1b[5~"`), you can run the command `showkey -a` outside
# of tmux. Note that applications use terminfo to map escape sequences back
# to keys. It is therefore required to update the terminfo when changing an
# escape sequence.
#
# - `action`: Execute a predefined action
#
# - ToggleViMode
# - SearchForward
# Start searching toward the right of the search origin.
# - SearchBackward
# Start searching toward the left of the search origin.
# - Copy
# - Paste
# - IncreaseFontSize
# - DecreaseFontSize
# - ResetFontSize
# - ScrollPageUp
# - ScrollPageDown
# - ScrollHalfPageUp
# - ScrollHalfPageDown
# - ScrollLineUp
# - ScrollLineDown
# - ScrollToTop
# - ScrollToBottom
# - ClearHistory
# Remove the terminal's scrollback history.
# - Hide
# Hide the Alacritty window.
# - Minimize
# Minimize the Alacritty window.
# - Quit
# Quit Alacritty.
# - ToggleFullscreen
# - SpawnNewInstance
# Spawn a new instance of Alacritty.
# - CreateNewWindow
# Create a new Alacritty window from the current process.
# - ClearLogNotice
# Clear Alacritty's UI warning and error notice.
# - ClearSelection
# Remove the active selection.
# - ReceiveChar
# - None
#
# - Vi mode exclusive actions:
#
# - Open
# Perform the action of the first matching hint under the vi mode cursor
# with `mouse.enabled` set to `true`.
# - ToggleNormalSelection
# - ToggleLineSelection
# - ToggleBlockSelection
# - ToggleSemanticSelection
# Toggle semantic selection based on `selection.semantic_escape_chars`.
#
# - Vi mode exclusive cursor motion actions:
#
# - Up
# One line up.
# - Down
# One line down.
# - Left
# One character left.
# - Right
# One character right.
# - First
# First column, or beginning of the line when already at the first column.
# - Last
# Last column, or beginning of the line when already at the last column.
# - FirstOccupied
# First non-empty cell in this terminal row, or first non-empty cell of
# the line when already at the first cell of the row.
# - High
# Top of the screen.
# - Middle
# Center of the screen.
# - Low
# Bottom of the screen.
# - SemanticLeft
# Start of the previous semantically separated word.
# - SemanticRight
# Start of the next semantically separated word.
# - SemanticLeftEnd
# End of the previous semantically separated word.
# - SemanticRightEnd
# End of the next semantically separated word.
# - WordLeft
# Start of the previous whitespace separated word.
# - WordRight
# Start of the next whitespace separated word.
# - WordLeftEnd
# End of the previous whitespace separated word.
# - WordRightEnd
# End of the next whitespace separated word.
# - Bracket
# Character matching the bracket at the cursor's location.
# - SearchNext
# Beginning of the next match.
# - SearchPrevious
# Beginning of the previous match.
# - SearchStart
# Start of the match to the left of the vi mode cursor.
# - SearchEnd
# End of the match to the right of the vi mode cursor.
#
# - Search mode exclusive actions:
# - SearchFocusNext
# Move the focus to the next search match.
# - SearchFocusPrevious
# Move the focus to the previous search match.
# - SearchConfirm
# - SearchCancel
# - SearchClear
# Reset the search regex.
# - SearchDeleteWord
# Delete the last word in the search regex.
# - SearchHistoryPrevious
# Go to the previous regex in the search history.
# - SearchHistoryNext
# Go to the next regex in the search history.
#
# - macOS exclusive actions:
# - ToggleSimpleFullscreen
# Enter fullscreen without occupying another space.
#
# - Linux/BSD exclusive actions:
#
# - CopySelection
# Copy from the selection buffer.
# - PasteSelection
# Paste from the selection buffer.
#
# - `command`: Fork and execute a specified command plus arguments
#
# The `command` field must be a map containing a `program` string and an
# `args` array of command line parameter strings. For example:
# `{ program: "alacritty", args: ["-e", "vttest"] }`
#
# And optionally:
#
# - `mods`: Key modifiers to filter binding actions
#
# - Command
# - Control
# - Option
# - Super
# - Shift
# - Alt
#
# Multiple `mods` can be combined using `|` like this:
# `mods: Control|Shift`.
# Whitespace and capitalization are relevant and must match the example.
#
# - `mode`: Indicate a binding for only specific terminal reported modes
#
# This is mainly used to send applications the correct escape sequences
# when in different modes.
#
# - AppCursor
# - AppKeypad
# - Search
# - Alt
# - Vi
#
# A `~` operator can be used before a mode to apply the binding whenever
# the mode is *not* active, e.g. `~Alt`.
#
# Bindings are always filled by default, but will be replaced when a new
# binding with the same triggers is defined. To unset a default binding, it can
# be mapped to the `ReceiveChar` action. Alternatively, you can use `None` for
# a no-op if you do not wish to receive input characters for that binding.
#
# If the same trigger is assigned to multiple actions, all of them are executed
# in the order they were defined in.
key_bindings:
- {
key: Grave,
mods: Control,
mode: ~Search,
action: ToggleViMode
}
#- { key: Paste, action: Paste }
#- { key: Copy, action: Copy }
#- { key: L, mods: Control, action: ClearLogNotice }
#- { key: L, mods: Control, mode: ~Vi|~Search, chars: "\x0c" }
#- { key: PageUp, mods: Shift, mode: ~Alt, action: ScrollPageUp, }
#- { key: PageDown, mods: Shift, mode: ~Alt, action: ScrollPageDown }
#- { key: Home, mods: Shift, mode: ~Alt, action: ScrollToTop, }
#- { key: End, mods: Shift, mode: ~Alt, action: ScrollToBottom }
# Vi Mode
#- { key: Space, mods: Shift|Control, mode: ~Search, action: ToggleViMode }
#- { key: Space, mods: Shift|Control, mode: Vi|~Search, action: ScrollToBottom }
#- { key: Escape, mode: Vi|~Search, action: ClearSelection }
#- { key: I, mode: Vi|~Search, action: ToggleViMode }
#- { key: I, mode: Vi|~Search, action: ScrollToBottom }
#- { key: C, mods: Control, mode: Vi|~Search, action: ToggleViMode }
#- { key: Y, mods: Control, mode: Vi|~Search, action: ScrollLineUp }
#- { key: E, mods: Control, mode: Vi|~Search, action: ScrollLineDown }
#- { key: G, mode: Vi|~Search, action: ScrollToTop }
#- { key: G, mods: Shift, mode: Vi|~Search, action: ScrollToBottom }
#- { key: B, mods: Control, mode: Vi|~Search, action: ScrollPageUp }
#- { key: F, mods: Control, mode: Vi|~Search, action: ScrollPageDown }
#- { key: U, mods: Control, mode: Vi|~Search, action: ScrollHalfPageUp }
#- { key: D, mods: Control, mode: Vi|~Search, action: ScrollHalfPageDown }
#- { key: Y, mode: Vi|~Search, action: Copy }
#- { key: Y, mode: Vi|~Search, action: ClearSelection }
#- { key: Copy, mode: Vi|~Search, action: ClearSelection }
#- { key: V, mode: Vi|~Search, action: ToggleNormalSelection }
#- { key: V, mods: Shift, mode: Vi|~Search, action: ToggleLineSelection }
#- { key: V, mods: Control, mode: Vi|~Search, action: ToggleBlockSelection }
#- { key: V, mods: Alt, mode: Vi|~Search, action: ToggleSemanticSelection }
#- { key: Return, mode: Vi|~Search, action: Open }
#- { key: K, mode: Vi|~Search, action: Up }
#- { key: J, mode: Vi|~Search, action: Down }
#- { key: H, mode: Vi|~Search, action: Left }
#- { key: L, mode: Vi|~Search, action: Right }
#- { key: Up, mode: Vi|~Search, action: Up }
#- { key: Down, mode: Vi|~Search, action: Down }
#- { key: Left, mode: Vi|~Search, action: Left }
#- { key: Right, mode: Vi|~Search, action: Right }
#- { key: Key0, mode: Vi|~Search, action: First }
#- { key: Key4, mods: Shift, mode: Vi|~Search, action: Last }
#- { key: Key6, mods: Shift, mode: Vi|~Search, action: FirstOccupied }
#- { key: H, mods: Shift, mode: Vi|~Search, action: High }
#- { key: M, mods: Shift, mode: Vi|~Search, action: Middle }
#- { key: L, mods: Shift, mode: Vi|~Search, action: Low }
#- { key: B, mode: Vi|~Search, action: SemanticLeft }
#- { key: W, mode: Vi|~Search, action: SemanticRight }
#- { key: E, mode: Vi|~Search, action: SemanticRightEnd }
#- { key: B, mods: Shift, mode: Vi|~Search, action: WordLeft }
#- { key: W, mods: Shift, mode: Vi|~Search, action: WordRight }
#- { key: E, mods: Shift, mode: Vi|~Search, action: WordRightEnd }
#- { key: Key5, mods: Shift, mode: Vi|~Search, action: Bracket }
#- { key: Slash, mode: Vi|~Search, action: SearchForward }
#- { key: Slash, mods: Shift, mode: Vi|~Search, action: SearchBackward }
#- { key: N, mode: Vi|~Search, action: SearchNext }
#- { key: N, mods: Shift, mode: Vi|~Search, action: SearchPrevious }
# Search Mode
#- { key: Return, mode: Search|Vi, action: SearchConfirm }
#- { key: Escape, mode: Search, action: SearchCancel }
#- { key: C, mods: Control, mode: Search, action: SearchCancel }
#- { key: U, mods: Control, mode: Search, action: SearchClear }
#- { key: W, mods: Control, mode: Search, action: SearchDeleteWord }
#- { key: P, mods: Control, mode: Search, action: SearchHistoryPrevious }
#- { key: N, mods: Control, mode: Search, action: SearchHistoryNext }
#- { key: Up, mode: Search, action: SearchHistoryPrevious }
#- { key: Down, mode: Search, action: SearchHistoryNext }
#- { key: Return, mode: Search|~Vi, action: SearchFocusNext }
#- { key: Return, mods: Shift, mode: Search|~Vi, action: SearchFocusPrevious }
# (Windows, Linux, and BSD only)
#- { key: V, mods: Control|Shift, mode: ~Vi, action: Paste }
#- { key: C, mods: Control|Shift, action: Copy }
#- { key: F, mods: Control|Shift, mode: ~Search, action: SearchForward }
#- { key: B, mods: Control|Shift, mode: ~Search, action: SearchBackward }
#- { key: C, mods: Control|Shift, mode: Vi|~Search, action: ClearSelection }
#- { key: Insert, mods: Shift, action: PasteSelection }
#- { key: Key0, mods: Control, action: ResetFontSize }
#- { key: Equals, mods: Control, action: IncreaseFontSize }
#- { key: Plus, mods: Control, action: IncreaseFontSize }
#- { key: NumpadAdd, mods: Control, action: IncreaseFontSize }
#- { key: Minus, mods: Control, action: DecreaseFontSize }
#- { key: NumpadSubtract, mods: Control, action: DecreaseFontSize }
# (Windows only)
#- { key: Return, mods: Alt, action: ToggleFullscreen }
# (macOS only)
#- { key: K, mods: Command, mode: ~Vi|~Search, chars: "\x0c" }
#- { key: K, mods: Command, mode: ~Vi|~Search, action: ClearHistory }
#- { key: Key0, mods: Command, action: ResetFontSize }
#- { key: Equals, mods: Command, action: IncreaseFontSize }
#- { key: Plus, mods: Command, action: IncreaseFontSize }
#- { key: NumpadAdd, mods: Command, action: IncreaseFontSize }
#- { key: Minus, mods: Command, action: DecreaseFontSize }
#- { key: NumpadSubtract, mods: Command, action: DecreaseFontSize }
#- { key: V, mods: Command, action: Paste }
#- { key: C, mods: Command, action: Copy }
#- { key: C, mods: Command, mode: Vi|~Search, action: ClearSelection }
#- { key: H, mods: Command, action: Hide }
#- { key: H, mods: Command|Alt, action: HideOtherApplications }
#- { key: M, mods: Command, action: Minimize }
#- { key: Q, mods: Command, action: Quit }
#- { key: W, mods: Command, action: Quit }
#- { key: N, mods: Command, action: SpawnNewInstance }
#- { key: F, mods: Command|Control, action: ToggleFullscreen }
#- { key: F, mods: Command, mode: ~Search, action: SearchForward }
#- { key: B, mods: Command, mode: ~Search, action: SearchBackward }
#debug:
# Display the time it takes to redraw each frame.
#render_timer: false
# Keep the log file after quitting Alacritty.
#persistent_logging: false
# Log level
#
# Values for `log_level`:
# - Off
# - Error
# - Warn
# - Info
# - Debug
# - Trace
#log_level: Warn
# Print all received window events.
#print_events: false
colors:
name: Alabaster
author: tonsky
primary:
background: "#F7F7F7"
foreground: "#000000"
cursor:
text: "#448C27"
cursor: "#000000"
normal:
black: "#000000"
red: "#AA3731"
green: "#448C27"
yellow: "#CB9000"
blue: "#325CC0"
magenta: "#7A3E9D"
cyan: "#0083B2"
white: "#BBBBBB"
bright:
black: "#777777"
red: "#F05050"
green: "#60CB00"
yellow: "#FFBC5D"
blue: "#007ACC"
magenta: "#E64CE6"
cyan: "#00AACB"
white: "#FFFFFF"
theme: Alabaster

View File

@@ -0,0 +1,23 @@
[colors.bright]
black = "0x000000"
blue = "0x96cbfe"
cyan = "0x85befd"
green = "0x94fa36"
magenta = "0xb9b6fc"
red = "0xfd5ff1"
white = "0xe0e0e0"
yellow = "0xf5ffa8"
[colors.normal]
black = "0x000000"
blue = "0x85befd"
cyan = "0x85befd"
green = "0x87c38a"
magenta = "0xb9b6fc"
red = "0xfd5ff1"
white = "0xe0e0e0"
yellow = "0xffd7b1"
[colors.primary]
background = "0x161719"
foreground = "0xc5c8c6"

View File

@@ -0,0 +1,22 @@
colors:
primary:
background: '0x1c1c1c'
foreground: '0xddeedd'
normal:
black: '0x3d352a'
red: '0xcd5c5c'
green: '0x86af80'
yellow: '0xe8ae5b'
blue: '0x6495ed'
magenta: '0xdeb887'
cyan: '0xb0c4de'
white: '0xbbaa99'
bright:
black: '0x554444'
red: '0xcc5533'
green: '0x88aa22'
yellow: '0xffa75d'
blue: '0x87ceeb'
magenta: '0x996600'
cyan: '0xb0c4de'
white: '0xddccbb'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0xf7f7f7'
foreground: '0x4a4543'
# Normal colors
normal:
black: '0x090300'
red: '0xdb2d20'
green: '0x01a252'
yellow: '0xfded02'
blue: '0x01a0e4'
magenta: '0xa16a94'
cyan: '0xb5e4f4'
white: '0xa5a2a2'
# Bright colors
bright:
black: '0x5c5855'
red: '0xe8bbd0'
green: '0x3a3432'
yellow: '0x4a4543'
blue: '0x807d7c'
magenta: '0xd6d5d4'
cyan: '0xcdab53'
white: '0xf7f7f7'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x090300'
foreground: '0xa5a2a2'
# Normal colors
normal:
black: '0x090300'
red: '0xdb2d20'
green: '0x01a252'
yellow: '0xfded02'
blue: '0x01a0e4'
magenta: '0xa16a94'
cyan: '0xb5e4f4'
white: '0xa5a2a2'
# Bright colors
bright:
black: '0x5c5855'
red: '0xe8bbd0'
green: '0x3a3432'
yellow: '0x4a4543'
blue: '0x807d7c'
magenta: '0xd6d5d4'
cyan: '0xcdab53'
white: '0xf7f7f7'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x0d1926'
foreground: '0xb4e1fd'
# Normal colors
normal:
black: '0x363636'
red: '0xff0883'
green: '0x83ff08'
yellow: '0xff8308'
blue: '0x0883ff'
magenta: '0x8308ff'
cyan: '0x08ff83'
white: '0xb6b6b6'
# Bright colors
bright:
black: '0x424242'
red: '0xff1e8e'
green: '0x8eff1e'
yellow: '0xff8e1e'
blue: '0x1e8eff'
magenta: '0x8e1eff'
cyan: '0x1eff8e'
white: '0xc2c2c2'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x1f1305'
foreground: '0xb4e1fd'
# Normal colors
normal:
black: '0x3f3f3f'
red: '0xff0883'
green: '0x83ff08'
yellow: '0xff8308'
blue: '0x0883ff'
magenta: '0x8308ff'
cyan: '0x08ff83'
white: '0xbebebe'
# Bright colors
bright:
black: '0x474747'
red: '0xff1e8e'
green: '0x8eff1e'
yellow: '0xff8e1e'
blue: '0x1e8eff'
magenta: '0x8e1eff'
cyan: '0x1eff8e'
white: '0xc4c4c4'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x1f1d45'
foreground: '0xf8dcc0'
# Normal colors
normal:
black: '0x050404'
red: '0xbd0013'
green: '0x4ab118'
yellow: '0xe7741e'
blue: '0x0f4ac6'
magenta: '0x665993'
cyan: '0x70a598'
white: '0xf8dcc0'
# Bright colors
bright:
black: '0x4e7cbf'
red: '0xfc5f5a'
green: '0x9eff6e'
yellow: '0xefc11a'
blue: '0x1997c6'
magenta: '0x9b5953'
cyan: '0xc8faf4'
white: '0xf6f5fb'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x222222'
foreground: '0xd0d0d0'
# Normal colors
normal:
black: '0x151515'
red: '0xa53c23'
green: '0x7b9246'
yellow: '0xd3a04d'
blue: '0x6c99bb'
magenta: '0x9f4e85'
cyan: '0x7dd6cf'
white: '0xd0d0d0'
# Bright colors
bright:
black: '0x505050'
red: '0xa53c23'
green: '0x7b9246'
yellow: '0xd3a04d'
blue: '0x547c99'
magenta: '0x9f4e85'
cyan: '0x7dd6cf'
white: '0xf5f5f5'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x0f1610'
foreground: '0x637d75'
# Normal colors
normal:
black: '0x112616'
red: '0x7f2b27'
green: '0x2f7e25'
yellow: '0x717f24'
blue: '0x2f6a7f'
magenta: '0x47587f'
cyan: '0x327f77'
white: '0x647d75'
# Bright colors
bright:
black: '0x3c4812'
red: '0xe08009'
green: '0x18e000'
yellow: '0xbde000'
blue: '0x00aae0'
magenta: '0x0058e0'
cyan: '0x00e0c4'
white: '0x73fa91'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x0e1019'
foreground: '0xfffaf4'
# Normal colors
normal:
black: '0x232323'
red: '0xff000f'
green: '0x8ce10b'
yellow: '0xffb900'
blue: '0x008df8'
magenta: '0x6d43a6'
cyan: '0x00d8eb'
white: '0xffffff'
# Bright colors
bright:
black: '0x444444'
red: '0xff2740'
green: '0xabe15b'
yellow: '0xffd242'
blue: '0x0092ff'
magenta: '0x9a5feb'
cyan: '0x67fff0'
white: '0xffffff'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x1c1c1c'
foreground: '0xddeedd'
# Normal colors
normal:
black: '0x3d352a'
red: '0xcd5c5c'
green: '0x86af80'
yellow: '0xe8ae5b'
blue: '0x6495ed'
magenta: '0xdeb887'
cyan: '0xb0c4de'
white: '0xbbaa99'
# Bright colors
bright:
black: '0x554444'
red: '0xcc5533'
green: '0x88aa22'
yellow: '0xffa75d'
blue: '0x87ceeb'
magenta: '0x996600'
cyan: '0xb0c4de'
white: '0xddccbb'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x161719'
foreground: '0xc5c8c6'
# Normal colors
normal:
black: '0x000000'
red: '0xfd5ff1'
green: '0x87c38a'
yellow: '0xffd7b1'
blue: '0x85befd'
magenta: '0xb9b6fc'
cyan: '0x85befd'
white: '0xe0e0e0'
# Bright colors
bright:
black: '0x000000'
red: '0xfd5ff1'
green: '0x94fa36'
yellow: '0xf5ffa8'
blue: '0x96cbfe'
magenta: '0xb9b6fc'
cyan: '0x85befd'
white: '0xe0e0e0'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x15141b'
foreground: '0xedecee'
# Normal colors
normal:
black: '0x110f18'
red: '0xff6767'
green: '0x61ffca'
yellow: '0xffca85'
blue: '0xa277ff'
magenta: '0xa277ff'
cyan: '0x61ffca'
white: '0xedecee'
# Bright colors
bright:
black: '0x6d6d6d'
red: '0xffca85'
green: '0xa277ff'
yellow: '0xffca85'
blue: '0xa277ff'
magenta: '0xa277ff'
cyan: '0x61ffca'
white: '0xedecee'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x0a0e14'
foreground: '0xb3b1ad'
# Normal colors
normal:
black: '0x0a0e14'
red: '0xff3333'
green: '0xc2d94c'
yellow: '0xff8f40'
blue: '0x59c2ff'
magenta: '0xffee99'
cyan: '0x95e6cb'
white: '0xb3b1ad'
# Bright colors
bright:
black: '0x4d5566'
red: '0xff3333'
green: '0xc2d94c'
yellow: '0xff8f40'
blue: '0x59c2ff'
magenta: '0xffee99'
cyan: '0x95e6cb'
white: '0xb3b1ad'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0xfafafa'
foreground: '0x575f66'
# Normal colors
normal:
black: '0x575f66'
red: '0xf51818'
green: '0x86b300'
yellow: '0xf2ae49'
blue: '0x399ee6'
magenta: '0xa37acc'
cyan: '0x4cbf99'
white: '0xfafafa'
# Bright colors
bright:
black: '0x8a9199'
red: '0xf51818'
green: '0x86b300'
yellow: '0xf2ae49'
blue: '0x399ee6'
magenta: '0xa37acc'
cyan: '0x4cbf99'
white: '0xfafafa'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x1f2430'
foreground: '0xcbccc6'
# Normal colors
normal:
black: '0x1f2430'
red: '0xff3333'
green: '0xbae67e'
yellow: '0xffa759'
blue: '0x73d0ff'
magenta: '0xd4bfff'
cyan: '0x95e6cb'
white: '0xcbccc6'
# Bright colors
bright:
black: '0x707a8c'
red: '0xff3333'
green: '0xbae67e'
yellow: '0xffa759'
blue: '0x73d0ff'
magenta: '0xd4bfff'
cyan: '0x95e6cb'
white: '0xcbccc6'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x09111a'
foreground: '0xd9e6f2'
# Normal colors
normal:
black: '0x000000'
red: '0xac6d74'
green: '0x74ac6d'
yellow: '0xaca46d'
blue: '0x6d74ac'
magenta: '0xa46dac'
cyan: '0x6daca4'
white: '0xe6e6e6'
# Bright colors
bright:
black: '0x262626'
red: '0xd6b8bc'
green: '0xbcd6b8'
yellow: '0xd6d3b8'
blue: '0xb8bcd6'
magenta: '0xd3b8d6'
cyan: '0xb8d6d3'
white: '0xffffff'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0xd5ccba'
foreground: '0x45373c'
# Normal colors
normal:
black: '0x20111b'
red: '0xbe100e'
green: '0x858162'
yellow: '0xeaa549'
blue: '0x426a79'
magenta: '0x97522c'
cyan: '0x989a9c'
white: '0x968c83'
# Bright colors
bright:
black: '0x5e5252'
red: '0xbe100e'
green: '0x858162'
yellow: '0xeaa549'
blue: '0x426a79'
magenta: '0x97522c'
cyan: '0x989a9c'
white: '0xd5ccba'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x20111b'
foreground: '0x968c83'
# Normal colors
normal:
black: '0x20111b'
red: '0xbe100e'
green: '0x858162'
yellow: '0xeaa549'
blue: '0x426a79'
magenta: '0x97522c'
cyan: '0x989a9c'
white: '0x968c83'
# Bright colors
bright:
black: '0x5e5252'
red: '0xbe100e'
green: '0x858162'
yellow: '0xeaa549'
blue: '0x426a79'
magenta: '0x97522c'
cyan: '0x989a9c'
white: '0xd5ccba'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x012849'
foreground: '0xa9bed8'
# Normal colors
normal:
black: '0x2c2423'
red: '0xf557a0'
green: '0xa9ee55'
yellow: '0xf5a255'
blue: '0x5ea2ec'
magenta: '0xa957ec'
cyan: '0x5eeea0'
white: '0x918988'
# Bright colors
bright:
black: '0x918988'
red: '0xf579b2'
green: '0xbbee78'
yellow: '0xf5b378'
blue: '0x81b3ec'
magenta: '0xbb79ec'
cyan: '0x81eeb2'
white: '0xf5eeec'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x2a1f1d'
foreground: '0xe0dbb7'
# Normal colors
normal:
black: '0x573d26'
red: '0xbe2d26'
green: '0x6ba18a'
yellow: '0xe99d2a'
blue: '0x5a86ad'
magenta: '0xac80a6'
cyan: '0x74a6ad'
white: '0xe0dbb7'
# Bright colors
bright:
black: '0x9b6c4a'
red: '0xe84627'
green: '0x95d8ba'
yellow: '0xd0d150'
blue: '0xb8d3ed'
magenta: '0xd19ecb'
cyan: '0x93cfd7'
white: '0xfff9d5'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x0d1926'
foreground: '0xd9e6f2'
# Normal colors
normal:
black: '0x000000'
red: '0xb87a7a'
green: '0x7ab87a'
yellow: '0xb8b87a'
blue: '0x7a7ab8'
magenta: '0xb87ab8'
cyan: '0x7ab8b8'
white: '0xd9d9d9'
# Bright colors
bright:
black: '0x262626'
red: '0xdbbdbd'
green: '0xbddbbd'
yellow: '0xdbdbbd'
blue: '0xbdbddb'
magenta: '0xdbbddb'
cyan: '0xbddbdb'
white: '0xffffff'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0xf9f9f9'
foreground: '0x383a42'
# Normal colors
normal:
black: '0xd5d6dd'
red: '0xd52753'
green: '0x23974a'
yellow: '0xdf631c'
blue: '0x275fe4'
magenta: '0x823ff1'
cyan: '0x27618d'
white: '0x000000'
# Bright colors
bright:
black: '0xe4e5ed'
red: '0xff6480'
green: '0x3cbc66'
yellow: '0xc5a332'
blue: '0x0099e1'
magenta: '0xce33c0'
cyan: '0x6d93bb'
white: '0x26272d'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0xf9f9f9'
foreground: '0x383a42'
# Normal colors
normal:
black: '0xe4e5f1'
red: '0xd52753'
green: '0x23974a'
yellow: '0xdf631c'
blue: '0x275fe4'
magenta: '0x823ff1'
cyan: '0x27618d'
white: '0x000000'
# Bright colors
bright:
black: '0x5794de'
red: '0xff6480'
green: '0x3cbc66'
yellow: '0xc5a332'
blue: '0x0099e1'
magenta: '0xce33c0'
cyan: '0x6d93bb'
white: '0x26272d'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x0000a4'
foreground: '0xffff4e'
# Normal colors
normal:
black: '0x4f4f4f'
red: '0xff6c60'
green: '0xa8ff60'
yellow: '0xffffb6'
blue: '0x96cbfe'
magenta: '0xff73fd'
cyan: '0xc6c5fe'
white: '0xeeeeee'
# Bright colors
bright:
black: '0x7c7c7c'
red: '0xffb6b0'
green: '0xceffac'
yellow: '0xffffcc'
blue: '0xb5dcff'
magenta: '0xff9cfe'
cyan: '0xdfdffe'
white: '0xffffff'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x2b2b2b'
foreground: '0xe6e1dc'
# Normal colors
normal:
black: '0x000000'
red: '0xda4939'
green: '0x519f50'
yellow: '0xffd24a'
blue: '0x6d9cbe'
magenta: '0xd0d0ff'
cyan: '0x6e9cbe'
white: '0xffffff'
# Bright colors
bright:
black: '0x323232'
red: '0xff7b6b'
green: '0x83d182'
yellow: '0xffff7c'
blue: '0x9fcef0'
magenta: '0xffffff'
cyan: '0xa0cef0'
white: '0xffffff'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x131313'
foreground: '0xd6dbe5'
# Normal colors
normal:
black: '0x1f1f1f'
red: '0xf81118'
green: '0x2dc55e'
yellow: '0xecba0f'
blue: '0x2a84d2'
magenta: '0x4e5ab7'
cyan: '0x1081d6'
white: '0xd6dbe5'
# Bright colors
bright:
black: '0xd6dbe5'
red: '0xde352e'
green: '0x1dd361'
yellow: '0xf3bd09'
blue: '0x1081d6'
magenta: '0x5350b9'
cyan: '0x0f7ddb'
white: '0xffffff'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x40318d'
foreground: '0x7869c4'
# Normal colors
normal:
black: '0x090300'
red: '0x883932'
green: '0x55a049'
yellow: '0xbfce72'
blue: '0x40318d'
magenta: '0x8b3f96'
cyan: '0x67b6bd'
white: '0xffffff'
# Bright colors
bright:
black: '0x000000'
red: '0x883932'
green: '0x55a049'
yellow: '0xbfce72'
blue: '0x40318d'
magenta: '0x8b3f96'
cyan: '0x67b6bd'
white: '0xf7f7f7'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x09111a'
foreground: '0xd9e6f2'
# Normal colors
normal:
black: '0x000000'
red: '0xca274d'
green: '0x4dca27'
yellow: '0xcaa427'
blue: '0x274dca'
magenta: '0xa427ca'
cyan: '0x27caa4'
white: '0x808080'
# Bright colors
bright:
black: '0x808080'
red: '0xe98da3'
green: '0xa3e98d'
yellow: '0xe9d48d'
blue: '0x8da3e9'
magenta: '0xd48de9'
cyan: '0x8de9d4'
white: '0xffffff'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x2d2d2d'
foreground: '0xd4d4d4'
# Normal colors
normal:
black: '0x646464'
red: '0xf58e8e'
green: '0xa9d3ab'
yellow: '0xfed37e'
blue: '0x7aabd4'
magenta: '0xd6add5'
cyan: '0x79d4d5'
white: '0xd4d4d4'
# Bright colors
bright:
black: '0x646464'
red: '0xf58e8e'
green: '0xa9d3ab'
yellow: '0xfed37e'
blue: '0x7aabd4'
magenta: '0xd6add5'
cyan: '0x79d4d5'
white: '0xd4d4d4'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x29262f'
foreground: '0xd9e6f2'
# Normal colors
normal:
black: '0x000000'
red: '0xc37372'
green: '0x72c373'
yellow: '0xc2c372'
blue: '0x7372c3'
magenta: '0xc372c2'
cyan: '0x72c2c3'
white: '0xd9d9d9'
# Bright colors
bright:
black: '0x323232'
red: '0xdbaaaa'
green: '0xaadbaa'
yellow: '0xdadbaa'
blue: '0xaaaadb'
magenta: '0xdbaada'
cyan: '0xaadadb'
white: '0xffffff'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x2c2c2c'
foreground: '0xdedede'
# Normal colors
normal:
black: '0x2c2c2c'
red: '0xcc231c'
green: '0x689d69'
yellow: '0xd79922'
blue: '0x366b71'
magenta: '0x4e5165'
cyan: '0x458587'
white: '0xc8bb97'
# Bright colors
bright:
black: '0x777777'
red: '0xcc231c'
green: '0x689d69'
yellow: '0xd79922'
blue: '0x366b71'
magenta: '0x4e5165'
cyan: '0x458587'
white: '0xc8bb97'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x191c27'
foreground: '0xaea47a'
# Normal colors
normal:
black: '0x181818'
red: '0x810009'
green: '0x48513b'
yellow: '0xcc8b3f'
blue: '0x576d8c'
magenta: '0x724d7c'
cyan: '0x5c4f4b'
white: '0xaea47f'
# Bright colors
bright:
black: '0x555555'
red: '0xac3835'
green: '0xa6a75d'
yellow: '0xdcdf7c'
blue: '0x3097c6'
magenta: '0xd33061'
cyan: '0xf3dbb2'
white: '0xf4f4f4'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x300a24'
foreground: '0xffffff'
# Normal colors
normal:
black: '0x2e3436'
red: '0xcc0000'
green: '0x4e9a06'
yellow: '0xc4a000'
blue: '0x3465a4'
magenta: '0x75507b'
cyan: '0x06989a'
white: '0xd3d7cf'
# Bright colors
bright:
black: '0x555753'
red: '0xef2929'
green: '0x8ae234'
yellow: '0xfce94f'
blue: '0x729fcf'
magenta: '0xad7fa8'
cyan: '0x34e2e2'
white: '0xeeeeec'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0xffffff'
foreground: '0x262626'
# Normal colors
normal:
black: '0x000000'
red: '0xf8282a'
green: '0x328a5d'
yellow: '0xfa701d'
blue: '0x135cd0'
magenta: '0x9f00bd'
cyan: '0x33c3c1'
white: '0xb3b3b3'
# Bright colors
bright:
black: '0x555753'
red: '0xfb0416'
green: '0x2cc631'
yellow: '0xfdd727'
blue: '0x1670ff'
magenta: '0xe900b0'
cyan: '0x3ad5ce'
white: '0xeeeeec'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x142838'
foreground: '0x8ff586'
# Normal colors
normal:
black: '0x142631'
red: '0xff2320'
green: '0x3ba5ff'
yellow: '0xe9e75c'
blue: '0x8ff586'
magenta: '0x781aa0'
cyan: '0x8ff586'
white: '0xba46b2'
# Bright colors
bright:
black: '0xfff688'
red: '0xd4312e'
green: '0x8ff586'
yellow: '0xe9f06d'
blue: '0x3c7dd2'
magenta: '0x8230a7'
cyan: '0x6cbc67'
white: '0x8ff586'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x132738'
foreground: '0xffffff'
# Normal colors
normal:
black: '0x000000'
red: '0xff0000'
green: '0x38de21'
yellow: '0xffe50a'
blue: '0x1460d2'
magenta: '0xff005d'
cyan: '0x00bbbb'
white: '0xbbbbbb'
# Bright colors
bright:
black: '0x555555'
red: '0xf40e17'
green: '0x3bd01d'
yellow: '0xedc809'
blue: '0x5555ff'
magenta: '0xff55ff'
cyan: '0x6ae3fa'
white: '0xffffff'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0xffffff'
foreground: '0x005f87'
# Normal colors
normal:
black: '0x000000'
red: '0xd70000'
green: '0x5faf00'
yellow: '0x5faf00'
blue: '0x005f87'
magenta: '0xd70000'
cyan: '0x5f5f5f'
white: '0xe4e4e4'
# Bright colors
bright:
black: '0x5f5f5f'
red: '0xd70000'
green: '0x5f5f5f'
yellow: '0xffff00'
blue: '0x0087af'
magenta: '0x0087af'
cyan: '0x0087af'
white: '0xffffff'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x150707'
foreground: '0x68525a'
# Normal colors
normal:
black: '0x2b1b1d'
red: '0x91002b'
green: '0x579524'
yellow: '0xab311b'
blue: '0x8c87b0'
magenta: '0x692f50'
cyan: '0xe8a866'
white: '0x68525a'
# Bright colors
bright:
black: '0x3d2b2e'
red: '0xc5255d'
green: '0x8dff57'
yellow: '0xc8381d'
blue: '0xcfc9ff'
magenta: '0xfc6cba'
cyan: '0xffceaf'
white: '0xb0949d'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x000000'
foreground: '0xffffff'
# Normal colors
normal:
black: '0x000000'
red: '0xff5555'
green: '0x55ff55'
yellow: '0xffff55'
blue: '0x5555ff'
magenta: '0xff55ff'
cyan: '0x55ffff'
white: '0xbbbbbb'
# Bright colors
bright:
black: '0x555555'
red: '0xff5555'
green: '0x55ff55'
yellow: '0xffff55'
blue: '0x5555ff'
magenta: '0xff55ff'
cyan: '0x55ffff'
white: '0xffffff'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x222324'
foreground: '0xbababa'
# Normal colors
normal:
black: '0x000000'
red: '0xe8341c'
green: '0x68c256'
yellow: '0xf2d42c'
blue: '0x1c98e8'
magenta: '0x8e69c9'
cyan: '0x1c98e8'
white: '0xbababa'
# Bright colors
bright:
black: '0x000000'
red: '0xe05a4f'
green: '0x77b869'
yellow: '0xefd64b'
blue: '0x387cd3'
magenta: '0x957bbe'
cyan: '0x3d97e2'
white: '0xbababa'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x000000'
foreground: '0x000000'
# Normal colors
normal:
black: '0x333333'
red: '0xff5555'
green: '0x5fd38d'
yellow: '0xff9955'
blue: '0x3771c8'
magenta: '0xbc5fd3'
cyan: '0x5fd3bc'
white: '0x999999'
# Bright colors
bright:
black: '0x666666'
red: '0xff8080'
green: '0x87deaa'
yellow: '0xffb380'
blue: '0x5f8dd3'
magenta: '0xcd87de'
cyan: '0x87decd'
white: '0xcccccc'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x333333'
foreground: '0xffffff'
# Normal colors
normal:
black: '0x4d4d4d'
red: '0xff2b2b'
green: '0x98fb98'
yellow: '0xf0e68c'
blue: '0xcd853f'
magenta: '0xffdead'
cyan: '0xffa0a0'
white: '0xf5deb3'
# Bright colors
bright:
black: '0x555555'
red: '0xff5555'
green: '0x55ff55'
yellow: '0xffff55'
blue: '0x87ceff'
magenta: '0xff55ff'
cyan: '0xffd700'
white: '0xffffff'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x1f1f1f'
foreground: '0xb9bcba'
# Normal colors
normal:
black: '0x3a3d43'
red: '0xbe3f48'
green: '0x879a3b'
yellow: '0xc5a635'
blue: '0x4f76a1'
magenta: '0x855c8d'
cyan: '0x578fa4'
white: '0xb9bcba'
# Bright colors
bright:
black: '0x888987'
red: '0xfb001f'
green: '0x0f722f'
yellow: '0xc47033'
blue: '0x186de3'
magenta: '0xfb0067'
cyan: '0x2e706d'
white: '0xfdffb9'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x000000'
foreground: '0xffffff'
# Normal colors
normal:
black: '0x000000'
red: '0xdc322f'
green: '0x56db3a'
yellow: '0xff8400'
blue: '0x0084d4'
magenta: '0xb729d9'
cyan: '0xccccff'
white: '0xffffff'
# Bright colors
bright:
black: '0xd6dbe5'
red: '0xdc322f'
green: '0x56db3a'
yellow: '0xff8400'
blue: '0x0084d4'
magenta: '0xb729d9'
cyan: '0xccccff'
white: '0xffffff'

View File

@@ -0,0 +1 @@
/home/kristjank/.config/alacritty/themes/arthur.sh.yml

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x282a36'
foreground: '0x94a3a5'
# Normal colors
normal:
black: '0x44475a'
red: '0xff5555'
green: '0x50fa7b'
yellow: '0xffb86c'
blue: '0x8be9fd'
magenta: '0xbd93f9'
cyan: '0xff79c6'
white: '0x94a3a5'
# Bright colors
bright:
black: '0x000000'
red: '0xff5555'
green: '0x50fa7b'
yellow: '0xffb86c'
blue: '0x8be9fd'
magenta: '0xbd93f9'
cyan: '0xff79c6'
white: '0xffffff'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x292520'
foreground: '0xe5c7a9'
# Normal colors
normal:
black: '0x121418'
red: '0xc94234'
green: '0x85c54c'
yellow: '0xf5ae2e'
blue: '0x1398b9'
magenta: '0xd0633d'
cyan: '0x509552'
white: '0xe5c6aa'
# Bright colors
bright:
black: '0x675f54'
red: '0xff645a'
green: '0x98e036'
yellow: '0xe0d561'
blue: '0x5fdaff'
magenta: '0xff9269'
cyan: '0x84f088'
white: '0xf6f7ec'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x22211d'
foreground: '0x807a74'
# Normal colors
normal:
black: '0x3c3c30'
red: '0x98290f'
green: '0x479a43'
yellow: '0x7f7111'
blue: '0x497f7d'
magenta: '0x7f4e2f'
cyan: '0x387f58'
white: '0x807974'
# Bright colors
bright:
black: '0x555445'
red: '0xe0502a'
green: '0x61e070'
yellow: '0xd69927'
blue: '0x79d9d9'
magenta: '0xcd7c54'
cyan: '0x59d599'
white: '0xfff1e9'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x101010'
foreground: '0xf2f2f2'
# Normal colors
normal:
black: '0x303030'
red: '0xe1321a'
green: '0x6ab017'
yellow: '0xffc005'
blue: '0x004f9e'
magenta: '0xec0048'
cyan: '0x2aa7e7'
white: '0xf2f2f2'
# Bright colors
bright:
black: '0x5d5d5d'
red: '0xff361e'
green: '0x7bc91f'
yellow: '0xffd00a'
blue: '0x0071ff'
magenta: '0xff1d62'
cyan: '0x4bb8fd'
white: '0xa020f0'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x4a453e'
foreground: '0xf2f2f2'
# Normal colors
normal:
black: '0x303030'
red: '0xe1321a'
green: '0x6ab017'
yellow: '0xffc005'
blue: '0x729fcf'
magenta: '0xec0048'
cyan: '0xf2f2f2'
white: '0x2aa7e7'
# Bright colors
bright:
black: '0x5d5d5d'
red: '0xff361e'
green: '0x7bc91f'
yellow: '0xffd00a'
blue: '0x0071ff'
magenta: '0xff1d62'
cyan: '0x4bb8fd'
white: '0xa020f0'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x041a3b'
foreground: '0xf2f2f2'
# Normal colors
normal:
black: '0x303030'
red: '0xe1321a'
green: '0x6ab017'
yellow: '0xffc005'
blue: '0x729fcf'
magenta: '0xec0048'
cyan: '0x2aa7e7'
white: '0xf2f2f2'
# Bright colors
bright:
black: '0x5d5d5d'
red: '0xff361e'
green: '0x7bc91f'
yellow: '0xffd00a'
blue: '0x0071ff'
magenta: '0xff1d62'
cyan: '0x4bb8fd'
white: '0xa020f0'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x2a211c'
foreground: '0xb8a898'
# Normal colors
normal:
black: '0x000000'
red: '0xcc0000'
green: '0x1a921c'
yellow: '0xf0e53a'
blue: '0x0066ff'
magenta: '0xc5656b'
cyan: '0x06989a'
white: '0xd3d7cf'
# Bright colors
bright:
black: '0x555753'
red: '0xef2929'
green: '0x9aff87'
yellow: '0xfffb5c'
blue: '0x43a8ed'
magenta: '0xff818a'
cyan: '0x34e2e2'
white: '0xeeeeec'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x323232'
foreground: '0xffffff'
# Normal colors
normal:
black: '0x353535'
red: '0xd25252'
green: '0xa5c261'
yellow: '0xffc66d'
blue: '0x6c99bb'
magenta: '0xd197d9'
cyan: '0xbed6ff'
white: '0xeeeeec'
# Bright colors
bright:
black: '0x535353'
red: '0xf00c0c'
green: '0xc2e075'
yellow: '0xe1e48b'
blue: '0x8ab7d9'
magenta: '0xefb5f7'
cyan: '0xdcf4ff'
white: '0xffffff'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x5a5475'
foreground: '0xc2ffdf'
# Normal colors
normal:
black: '0x42395d'
red: '0xa8757b'
green: '0xff857f'
yellow: '0xe6c000'
blue: '0xae81ff'
magenta: '0x716799'
cyan: '0xc2ffdf'
white: '0xf8f8f2'
# Bright colors
bright:
black: '0x75507b'
red: '0xffb8d1'
green: '0xf1568e'
yellow: '0xd5a425'
blue: '0xc5a3ff'
magenta: '0x8077a8'
cyan: '0xc2ffff'
white: '0xf8f8f0'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x42395d'
foreground: '0xc2ffdf'
# Normal colors
normal:
black: '0x42395d'
red: '0xa8757b'
green: '0xff857f'
yellow: '0xe6c000'
blue: '0xae81ff'
magenta: '0x716799'
cyan: '0xc2ffdf'
white: '0xf8f8f2'
# Bright colors
bright:
black: '0x75507b'
red: '0xffb8d1'
green: '0xf1568e'
yellow: '0xd5a425'
blue: '0xc5a3ff'
magenta: '0x8077a8'
cyan: '0xc2ffff'
white: '0xf8f8f0'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x232537'
foreground: '0xecf0fe'
# Normal colors
normal:
black: '0x03073c'
red: '0xc6004a'
green: '0xacf157'
yellow: '0xfecd5e'
blue: '0x525fb8'
magenta: '0x986f82'
cyan: '0x968763'
white: '0xecf0fc'
# Bright colors
bright:
black: '0x6c5b30'
red: '0xda4b8a'
green: '0xdbffa9'
yellow: '0xfee6a9'
blue: '0xb2befa'
magenta: '0xfda5cd'
cyan: '0xa5bd86'
white: '0xf6ffec'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x272a34'
foreground: '0xffffff'
# Normal colors
normal:
black: '0x1f2229'
red: '0xd41919'
green: '0x5ebdab'
yellow: '0xfea44c'
blue: '0x367bf0'
magenta: '0xbf2e5d'
cyan: '0x49aee6'
white: '0xe6e6e6'
# Bright colors
bright:
black: '0x8c42ab'
red: '0xec0101'
green: '0x47d4b9'
yellow: '0xff8a18'
blue: '0x277fff'
magenta: '0xd71655'
cyan: '0x05a1f7'
white: '0xffffff'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x1f2d3a'
foreground: '0x1abc9c'
# Normal colors
normal:
black: '0x2c3e50'
red: '0xc0392b'
green: '0x27ae60'
yellow: '0xf39c12'
blue: '0x2980b9'
magenta: '0x8e44ad'
cyan: '0x16a085'
white: '0xbdc3c7'
# Bright colors
bright:
black: '0x34495e'
red: '0xe74c3c'
green: '0x2ecc71'
yellow: '0xf1c40f'
blue: '0x3498db'
magenta: '0x9b59b6'
cyan: '0x2aa198'
white: '0xecf0f1'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x1d1f21'
foreground: '0xb8dbef'
# Normal colors
normal:
black: '0x1d1d19'
red: '0xf18339'
green: '0x9fd364'
yellow: '0xf4ef6d'
blue: '0x5096be'
magenta: '0x695abc'
cyan: '0xd63865'
white: '0xffffff'
# Bright colors
bright:
black: '0x1d1d19'
red: '0xd22a24'
green: '0xa7d42c'
yellow: '0xff8949'
blue: '0x61b9d0'
magenta: '0x695abc'
cyan: '0xd63865'
white: '0xffffff'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x2a2a2e'
foreground: '0xd7d7db'
# Normal colors
normal:
black: '0x2a2a2e'
red: '0xb98eff'
green: '0xff7de9'
yellow: '0x729fcf'
blue: '0x66a05b'
magenta: '0x75507b'
cyan: '0xacacae'
white: '0xffffff'
# Bright colors
bright:
black: '0xa40000'
red: '0xbf4040'
green: '0x66a05b'
yellow: '0xffb86c'
blue: '0x729fcf'
magenta: '0x8f5902'
cyan: '0xc4a000'
white: '0x5c3566'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x252e32'
foreground: '0x94a3a5'
# Normal colors
normal:
black: '0x073642'
red: '0xdc322f'
green: '0x859900'
yellow: '0xb58900'
blue: '0x268bd2'
magenta: '0xec0048'
cyan: '0x2aa198'
white: '0x94a3a5'
# Bright colors
bright:
black: '0x586e75'
red: '0xcb4b16'
green: '0x859900'
yellow: '0xb58900'
blue: '0x268bd2'
magenta: '0xd33682'
cyan: '0x2aa198'
white: '0x6c71c4'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x1b1c1d'
foreground: '0xadadad'
# Normal colors
normal:
black: '0x242526'
red: '0xf8511b'
green: '0x565747'
yellow: '0xfa771d'
blue: '0x2c70b7'
magenta: '0xf02e4f'
cyan: '0x3ca1a6'
white: '0xadadad'
# Bright colors
bright:
black: '0x5fac6d'
red: '0xf74319'
green: '0x74ec4c'
yellow: '0xfdc325'
blue: '0x3393ca'
magenta: '0xe75e4f'
cyan: '0x4fbce6'
white: '0x8c735b'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x251200'
foreground: '0xdec165'
# Normal colors
normal:
black: '0x000000'
red: '0xd6262b'
green: '0x919c00'
yellow: '0xbe8a13'
blue: '0x4699a3'
magenta: '0x8d4331'
cyan: '0xda8213'
white: '0xddc265'
# Bright colors
bright:
black: '0x7f6a55'
red: '0xe55a1c'
green: '0xbfc65a'
yellow: '0xffcb1b'
blue: '0x7cc9cf'
magenta: '0xd26349'
cyan: '0xe6a96b'
white: '0xffeaa3'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x1d2837'
foreground: '0xffffff'
# Normal colors
normal:
black: '0x000000'
red: '0xf9555f'
green: '0x21b089'
yellow: '0xfef02a'
blue: '0x589df6'
magenta: '0x944d95'
cyan: '0x1f9ee7'
white: '0xbbbbbb'
# Bright colors
bright:
black: '0x555555'
red: '0xfa8c8f'
green: '0x35bb9a'
yellow: '0xffff55'
blue: '0x589df6'
magenta: '0xe75699'
cyan: '0x3979bc'
white: '0xffffff'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x000000'
foreground: '0x000000'
# Normal colors
normal:
black: '0x000000'
red: '0x000000'
green: '0x000000'
yellow: '0x000000'
blue: '0x000000'
magenta: '0x000000'
cyan: '0x000000'
white: '0x000000'
# Bright colors
bright:
black: '0x000000'
red: '0x000000'
green: '0x000000'
yellow: '0x000000'
blue: '0x000000'
magenta: '0x000000'
cyan: '0x000000'
white: '0x000000'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0xf4f4f4'
foreground: '0x3e3e3e'
# Normal colors
normal:
black: '0x3e3e3e'
red: '0x970b16'
green: '0x07962a'
yellow: '0xf8eec7'
blue: '0x003e8a'
magenta: '0xe94691'
cyan: '0x89d1ec'
white: '0xffffff'
# Bright colors
bright:
black: '0x666666'
red: '0xde0000'
green: '0x87d5a2'
yellow: '0xf1d007'
blue: '0x2e6cba'
magenta: '0xffa29f'
cyan: '0x1cfafe'
white: '0xffffff'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x292d3e'
foreground: '0xbfc7d5'
# Normal colors
normal:
black: '0x292d3e'
red: '0xf07178'
green: '0x62de84'
yellow: '0xffcb6b'
blue: '0x75a1ff'
magenta: '0xf580ff'
cyan: '0x60baec'
white: '0xabb2bf'
# Bright colors
bright:
black: '0x959dcb'
red: '0xf07178'
green: '0xc3e88d'
yellow: '0xff5572'
blue: '0x82aaff'
magenta: '0xffcb6b'
cyan: '0x676e95'
white: '0xfffefe'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x0d101b'
foreground: '0xebeef9'
# Normal colors
normal:
black: '0x000009'
red: '0xbb4f6c'
green: '0x72ccae'
yellow: '0xc65e3d'
blue: '0x58b6ca'
magenta: '0x6488c4'
cyan: '0x8d84c6'
white: '0x858893'
# Bright colors
bright:
black: '0x1f222d'
red: '0xee829f'
green: '0xa5ffe1'
yellow: '0xf99170'
blue: '0x8be9fd'
magenta: '0x97bbf7'
cyan: '0xc0b7f9'
white: '0xffffff'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x202124'
foreground: '0xe8eaed'
# Normal colors
normal:
black: '0x202124'
red: '0xea4335'
green: '0x34a853'
yellow: '0xfbbc04'
blue: '0x4285f4'
magenta: '0xa142f4'
cyan: '0x24c1e0'
white: '0xe8eaed'
# Bright colors
bright:
black: '0x5f6368'
red: '0xea4335'
green: '0x34a853'
yellow: '0xfbbc05'
blue: '0x4285f4'
magenta: '0xa142f4'
cyan: '0x24c1e0'
white: '0xffffff'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0xffffff'
foreground: '0x5f6368'
# Normal colors
normal:
black: '0x202124'
red: '0xea4335'
green: '0x34a853'
yellow: '0xfbbc04'
blue: '0x4285f4'
magenta: '0xa142f4'
cyan: '0x24c1e0'
white: '0xe8eaed'
# Bright colors
bright:
black: '0x5f6368'
red: '0xea4335'
green: '0x34a853'
yellow: '0xfbbc05'
blue: '0x4285f4'
magenta: '0xa142f4'
cyan: '0x24c1e0'
white: '0xffffff'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x0a0f14'
foreground: '0x98d1ce'
# Normal colors
normal:
black: '0x0a0f14'
red: '0xc33027'
green: '0x26a98b'
yellow: '0xedb54b'
blue: '0x195465'
magenta: '0x4e5165'
cyan: '0x33859d'
white: '0x98d1ce'
# Bright colors
bright:
black: '0x10151b'
red: '0xd26939'
green: '0x081f2d'
yellow: '0x245361'
blue: '0x093748'
magenta: '0x888ba5'
cyan: '0x599caa'
white: '0xd3ebe9'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x171423'
foreground: '0x9f9fa1'
# Normal colors
normal:
black: '0x2d283f'
red: '0xed2261'
green: '0x1fa91b'
yellow: '0x8ddc20'
blue: '0x487df4'
magenta: '0x8d35c9'
cyan: '0x3bdeed'
white: '0x9e9ea0'
# Bright colors
bright:
black: '0x59516a'
red: '0xf0729a'
green: '0x53aa5e'
yellow: '0xb2dc87'
blue: '0xa9bcec'
magenta: '0xad81c2'
cyan: '0x9de3eb'
white: '0xa288f7'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x13773d'
foreground: '0xfff0a5'
# Normal colors
normal:
black: '0x000000'
red: '0xbb0000'
green: '0x00bb00'
yellow: '0xe7b000'
blue: '0x0000a3'
magenta: '0x950062'
cyan: '0x00bbbb'
white: '0xbbbbbb'
# Bright colors
bright:
black: '0x555555'
red: '0xbb0000'
green: '0x00bb00'
yellow: '0xe7b000'
blue: '0x0000bb'
magenta: '0xff55ff'
cyan: '0x55ffff'
white: '0xffffff'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x282828'
foreground: '0xebdbb2'
# Normal colors
normal:
black: '0x282828'
red: '0xcc241d'
green: '0x98971a'
yellow: '0xd79921'
blue: '0x458588'
magenta: '0xb16286'
cyan: '0x689d6a'
white: '0xa89984'
# Bright colors
bright:
black: '0x928374'
red: '0xfb4934'
green: '0xb8bb26'
yellow: '0xfabd2f'
blue: '0x83a598'
magenta: '0xd3869b'
cyan: '0x8ec07c'
white: '0xebdbb2'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0xfbf1c7'
foreground: '0x3c3836'
# Normal colors
normal:
black: '0xfbf1c7'
red: '0xcc241d'
green: '0x98971a'
yellow: '0xd79921'
blue: '0x458588'
magenta: '0xb16286'
cyan: '0x689d6a'
white: '0x7c6f64'
# Bright colors
bright:
black: '0x928374'
red: '0x9d0006'
green: '0x79740e'
yellow: '0xb57614'
blue: '0x076678'
magenta: '0x8f3f71'
cyan: '0x427b58'
white: '0x3c3836'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x121212'
foreground: '0xa0a0a0'
# Normal colors
normal:
black: '0x1b1d1e'
red: '0xf92672'
green: '0xa6e22e'
yellow: '0xfd971f'
blue: '0x66d9ef'
magenta: '0x9e6ffe'
cyan: '0x5e7175'
white: '0xccccc6'
# Bright colors
bright:
black: '0x505354'
red: '0xff669d'
green: '0xbeed5f'
yellow: '0xe6db74'
blue: '0x66d9ef'
magenta: '0x9e6ffe'
cyan: '0xa3babf'
white: '0xf8f8f2'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x010101'
foreground: '0xa8a49d'
# Normal colors
normal:
black: '0x010101'
red: '0xf8b63f'
green: '0x7fb5e1'
yellow: '0xd6da25'
blue: '0x489e48'
magenta: '0xb296c6'
cyan: '0xf5bfd7'
white: '0xa8a49d'
# Bright colors
bright:
black: '0x726e6a'
red: '0xf8b63f'
green: '0x7fb5e1'
yellow: '0xd6da25'
blue: '0x489e48'
magenta: '0xb296c6'
cyan: '0xf5bfd7'
white: '0xfefbea'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x000000'
foreground: '0xffffff'
# Normal colors
normal:
black: '0x444444'
red: '0xff0054'
green: '0xb1d630'
yellow: '0x9d895e'
blue: '0x67bee3'
magenta: '0xb576bc'
cyan: '0x569a9f'
white: '0xededed'
# Bright colors
bright:
black: '0x777777'
red: '0xd65e75'
green: '0xbaffaa'
yellow: '0xece1c8'
blue: '0x9fd3e5'
magenta: '0xdeb3df'
cyan: '0xb6e0e5'
white: '0xffffff'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0xefefef'
foreground: '0x444444'
# Normal colors
normal:
black: '0x777777'
red: '0xff0055'
green: '0x739100'
yellow: '0x503d15'
blue: '0x538091'
magenta: '0x5b345e'
cyan: '0x538091'
white: '0x999999'
# Bright colors
bright:
black: '0x999999'
red: '0xd65e76'
green: '0x9cc700'
yellow: '0x947555'
blue: '0x9db3cd'
magenta: '0xa184a4'
cyan: '0x85b2aa'
white: '0xbababa'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x222225'
foreground: '0xededed'
# Normal colors
normal:
black: '0x000000'
red: '0xd00e18'
green: '0x138034'
yellow: '0xffcb3e'
blue: '0x006bb3'
magenta: '0x6b2775'
cyan: '0x384564'
white: '0xededed'
# Bright colors
bright:
black: '0x5d504a'
red: '0xf07e18'
green: '0xb1d130'
yellow: '0xfff120'
blue: '0x4fc2fd'
magenta: '0xde0071'
cyan: '0x5d504a'
white: '0xffffff'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x100b05'
foreground: '0x84c138'
# Normal colors
normal:
black: '0x000000'
red: '0xb6214a'
green: '0x00a600'
yellow: '0xbfbf00'
blue: '0x246eb2'
magenta: '0xb200b2'
cyan: '0x00a6b2'
white: '0xbfbfbf'
# Bright colors
bright:
black: '0x666666'
red: '0xe50000'
green: '0x86a93e'
yellow: '0xe5e500'
blue: '0x0000ff'
magenta: '0xe500e5'
cyan: '0x00e5e5'
white: '0xe5e5e5'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x000000'
foreground: '0x00ff00'
# Normal colors
normal:
black: '0x000000'
red: '0x990000'
green: '0x00a600'
yellow: '0x999900'
blue: '0x0000b2'
magenta: '0xb200b2'
cyan: '0x00a6b2'
white: '0xbfbfbf'
# Bright colors
bright:
black: '0x666666'
red: '0xe50000'
green: '0x00d900'
yellow: '0xe5e500'
blue: '0x0000ff'
magenta: '0xe500e5'
cyan: '0x00e5e5'
white: '0xe5e5e5'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0xfdf0ed'
foreground: '0x1c1e26'
# Normal colors
normal:
black: '0x16161c'
red: '0xda103f'
green: '0x1eb980'
yellow: '0xf6661e'
blue: '0x26bbd9'
magenta: '0xee64ae'
cyan: '0x1d8991'
white: '0xfadad1'
# Bright colors
bright:
black: '0x1a1c23'
red: '0xf43e5c'
green: '0x07da8c'
yellow: '0xf77d26'
blue: '0x3fc6de'
magenta: '0xf075b7'
cyan: '0x1eaeae'
white: '0xfdf0ed'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x1c1e26'
foreground: '0xfdf0ed'
# Normal colors
normal:
black: '0x16161c'
red: '0xe95678'
green: '0x29d398'
yellow: '0xfab795'
blue: '0x26bbd9'
magenta: '0xee64ae'
cyan: '0x59e3e3'
white: '0xfadad1'
# Bright colors
bright:
black: '0x232530'
red: '0xec6a88'
green: '0x3fdaa4'
yellow: '0xfbc3a7'
blue: '0x3fc6de'
magenta: '0xf075b7'
cyan: '0x6be6e6'
white: '0xfdf0ed'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x000000'
foreground: '0xdbdbdb'
# Normal colors
normal:
black: '0x575757'
red: '0xff1b00'
green: '0xa5e055'
yellow: '0xfbe74a'
blue: '0x496487'
magenta: '0xfd5ff1'
cyan: '0x86e9fe'
white: '0xcbcccb'
# Bright colors
bright:
black: '0x262626'
red: '0xd51d00'
green: '0xa5df55'
yellow: '0xfbe84a'
blue: '0x89beff'
magenta: '0xc001c1'
cyan: '0x86eafe'
white: '0xdbdbdb'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x141414'
foreground: '0x94a3a5'
# Normal colors
normal:
black: '0x282a2e'
red: '0xa54242'
green: '0x8c9440'
yellow: '0xde935f'
blue: '0x5f819d'
magenta: '0x85678f'
cyan: '0x5e8d87'
white: '0x969896'
# Bright colors
bright:
black: '0x373b41'
red: '0xcc6666'
green: '0xb5bd68'
yellow: '0xf0c674'
blue: '0x81a2be'
magenta: '0xb294bb'
cyan: '0x8abeb7'
white: '0xc5c8c6'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x000000'
foreground: '0xfdfdfd'
# Normal colors
normal:
black: '0x000000'
red: '0xff0000'
green: '0x00ff00'
yellow: '0xffff00'
blue: '0x00bfff'
magenta: '0xffc0cb'
cyan: '0x40e0d0'
white: '0xbebebe'
# Bright colors
bright:
black: '0x414141'
red: '0xffa500'
green: '0x98fb98'
yellow: '0xffff00'
blue: '0x0000cd'
magenta: '0xa020f0'
cyan: '0xaeeeee'
white: '0xffffff'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x000000'
foreground: '0xfdfdfd'
# Normal colors
normal:
black: '0x222222'
red: '0xf01818'
green: '0x24d830'
yellow: '0xf0d824'
blue: '0x7890f0'
magenta: '0xf078d8'
cyan: '0x54e4e4'
white: '0xa5a5a5'
# Bright colors
bright:
black: '0x888888'
red: '0xef8383'
green: '0x7ed684'
yellow: '0xefe28b'
blue: '0xb3bfef'
magenta: '0xefb3e3'
cyan: '0x9ce2e2'
white: '0xffffff'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x3a3d3f'
foreground: '0xd9efd3'
# Normal colors
normal:
black: '0x1f1f1f'
red: '0xfb002a'
green: '0x339c24'
yellow: '0x659b25'
blue: '0x149b45'
magenta: '0x53b82c'
cyan: '0x2cb868'
white: '0xe0ffef'
# Bright colors
bright:
black: '0x032710'
red: '0xa7ff3f'
green: '0x9fff6d'
yellow: '0xd2ff6d'
blue: '0x72ffb5'
magenta: '0x50ff3e'
cyan: '0x22ff71'
white: '0xdaefd0'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x262626'
foreground: '0xffcb83'
# Normal colors
normal:
black: '0x000000'
red: '0xc13900'
green: '0xa4a900'
yellow: '0xcaaf00'
blue: '0xbd6d00'
magenta: '0xfc5e00'
cyan: '0xf79500'
white: '0xffc88a'
# Bright colors
bright:
black: '0x6a4f2a'
red: '0xff8c68'
green: '0xf6ff40'
yellow: '0xffe36e'
blue: '0xffbe55'
magenta: '0xfc874f'
cyan: '0xc69752'
white: '0xfafaff'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x323232'
foreground: '0xffffff'
# Normal colors
normal:
black: '0x323232'
red: '0xd25252'
green: '0x7fe173'
yellow: '0xffc66d'
blue: '0x4099ff'
magenta: '0xf680ff'
cyan: '0xbed6ff'
white: '0xeeeeec'
# Bright colors
bright:
black: '0x535353'
red: '0xf07070'
green: '0x9dff91'
yellow: '0xffe48b'
blue: '0x5eb7f7'
magenta: '0xff9dff'
cyan: '0xdcf4ff'
white: '0xffffff'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x000000'
foreground: '0xeeeeee'
# Normal colors
normal:
black: '0x4e4e4e'
red: '0xff6c60'
green: '0xa8ff60'
yellow: '0xffffb6'
blue: '0x69cbfe'
magenta: '0xff73fd'
cyan: '0xc6c5fe'
white: '0xeeeeee'
# Bright colors
bright:
black: '0x7c7c7c'
red: '0xffb6b0'
green: '0xceffac'
yellow: '0xffffcb'
blue: '0xb5dcfe'
magenta: '0xff9cfe'
cyan: '0xdfdffe'
white: '0xffffff'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x2c1d16'
foreground: '0xffcc2f'
# Normal colors
normal:
black: '0x2c1d16'
red: '0xef5734'
green: '0x2baf2b'
yellow: '0xbebf00'
blue: '0x246eb2'
magenta: '0xd05ec1'
cyan: '0x00acee'
white: '0xbfbfbf'
# Bright colors
bright:
black: '0x666666'
red: '0xe50000'
green: '0x86a93e'
yellow: '0xe5e500'
blue: '0x0000ff'
magenta: '0xe500e5'
cyan: '0x00e5e5'
white: '0xe5e5e5'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x1e1e1e'
foreground: '0xf7f6ec'
# Normal colors
normal:
black: '0x343935'
red: '0xcf3f61'
green: '0x7bb75b'
yellow: '0xe9b32a'
blue: '0x4c9ad4'
magenta: '0xa57fc4'
cyan: '0x389aad'
white: '0xfafaf6'
# Bright colors
bright:
black: '0x595b59'
red: '0xd18fa6'
green: '0x767f2c'
yellow: '0x78592f'
blue: '0x135979'
magenta: '0x604291'
cyan: '0x76bbca'
white: '0xb2b5ae'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x121212'
foreground: '0xdedede'
# Normal colors
normal:
black: '0x929292'
red: '0xe27373'
green: '0x94b979'
yellow: '0xffba7b'
blue: '0x97bedc'
magenta: '0xe1c0fa'
cyan: '0x00988e'
white: '0xdedede'
# Bright colors
bright:
black: '0xbdbdbd'
red: '0xffa1a1'
green: '0xbddeab'
yellow: '0xffdca0'
blue: '0xb1d8f6'
magenta: '0xfbdaff'
cyan: '0x1ab2a8'
white: '0xffffff'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x758480'
foreground: '0x23476a'
# Normal colors
normal:
black: '0x000000'
red: '0xdd006f'
green: '0x6fdd00'
yellow: '0xdd6f00'
blue: '0x006fdd'
magenta: '0x6f00dd'
cyan: '0x00dd6f'
white: '0xf2f2f2'
# Bright colors
bright:
black: '0x7d7d7d'
red: '0xff74b9'
green: '0xb9ff74'
yellow: '0xffb974'
blue: '0x74b9ff'
magenta: '0xb974ff'
cyan: '0x74ffb9'
white: '0xffffff'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x0e100a'
foreground: '0xf7f7f7'
# Normal colors
normal:
black: '0x4d4d4d'
red: '0xc70031'
green: '0x29cf13'
yellow: '0xd8e30e'
blue: '0x3449d1'
magenta: '0x8400ff'
cyan: '0x0798ab'
white: '0xe2d1e3'
# Bright colors
bright:
black: '0x5a5a5a'
red: '0xf01578'
green: '0x6ce05c'
yellow: '0xf3f79e'
blue: '0x97a4f7'
magenta: '0xc495f0'
cyan: '0x68f2e0'
white: '0xffffff'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x0d4a08'
foreground: '0xd8e2d7'
# Normal colors
normal:
black: '0x2e8744'
red: '0xd84e4c'
green: '0x95da5a'
yellow: '0xd6e264'
blue: '0x4b9ed7'
magenta: '0x945fc5'
cyan: '0xd89b25'
white: '0xd8e2d7'
# Bright colors
bright:
black: '0x34934f'
red: '0xff4f59'
green: '0xaff56a'
yellow: '0xfcff75'
blue: '0x57aeff'
magenta: '0xae63e9'
cyan: '0xffaa2b'
white: '0xfffefe'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x1f1926'
foreground: '0xe0e0e0'
# Normal colors
normal:
black: '0x39243a'
red: '0xeb64b9'
green: '0xafd686'
yellow: '0xfeae87'
blue: '0x40b4c4'
magenta: '0xb381c5'
cyan: '0x215969'
white: '0x91889b'
# Bright colors
bright:
black: '0x716485'
red: '0xfc2377'
green: '0x50fa7b'
yellow: '0xffe261'
blue: '0x74dfc4'
magenta: '0x6d75e0'
cyan: '0xb4dce7'
white: '0xffffff'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x222222'
foreground: '0x959595'
# Normal colors
normal:
black: '0x2b2b2b'
red: '0xd45a60'
green: '0xafba67'
yellow: '0xe5d289'
blue: '0xa0bad6'
magenta: '0xc092d6'
cyan: '0x91bfb7'
white: '0x3c3d3d'
# Bright colors
bright:
black: '0x454747'
red: '0xd3232f'
green: '0xaabb39'
yellow: '0xe5be39'
blue: '0x6699d6'
magenta: '0xab53d6'
cyan: '0x5fc0ae'
white: '0xc1c2c2'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x050014'
foreground: '0x736e7d'
# Normal colors
normal:
black: '0x230046'
red: '0x7d1625'
green: '0x337e6f'
yellow: '0x7f6f49'
blue: '0x4f4a7f'
magenta: '0x5a3f7f'
cyan: '0x58777f'
white: '0x736e7d'
# Bright colors
bright:
black: '0x372d46'
red: '0xe05167'
green: '0x52e0c4'
yellow: '0xe0c386'
blue: '0x8e87e0'
magenta: '0xa776e0'
cyan: '0x9ad4e0'
white: '0x8c91fa'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x000000'
foreground: '0xafc2c2'
# Normal colors
normal:
black: '0x000000'
red: '0xff3030'
green: '0x559a70'
yellow: '0xccac00'
blue: '0x0099cc'
magenta: '0xcc69c8'
cyan: '0x7ac4cc'
white: '0xbccccc'
# Bright colors
bright:
black: '0x000000'
red: '0xff3030'
green: '0x559a70'
yellow: '0xccac00'
blue: '0x0099cc'
magenta: '0xcc69c8'
cyan: '0x7ac4cc'
white: '0xbccccc'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x303030'
foreground: '0xafc2c2'
# Normal colors
normal:
black: '0x000000'
red: '0xff3030'
green: '0x559a70'
yellow: '0xccac00'
blue: '0x0099cc'
magenta: '0xcc69c8'
cyan: '0x7ac4cc'
white: '0xbccccc'
# Bright colors
bright:
black: '0x000000'
red: '0xff3030'
green: '0x559a70'
yellow: '0xccac00'
blue: '0x0099cc'
magenta: '0xcc69c8'
cyan: '0x7ac4cc'
white: '0xbccccc'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x36464e'
foreground: '0xcaced8'
# Normal colors
normal:
black: '0x36464e'
red: '0x846560'
green: '0x809984'
yellow: '0xa79a79'
blue: '0x555673'
magenta: '0x866c83'
cyan: '0x7e98b4'
white: '0xcaced8'
# Bright colors
bright:
black: '0x404f56'
red: '0xbb928b'
green: '0xbfdcc2'
yellow: '0xf1dfb6'
blue: '0x777798'
magenta: '0xbf9db9'
cyan: '0xbddcff'
white: '0xdfe2ed'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x323f46'
foreground: '0xc9cdd7'
# Normal colors
normal:
black: '0x323f46'
red: '0x83615b'
green: '0x7f9781'
yellow: '0xa69875'
blue: '0x53516f'
magenta: '0x856880'
cyan: '0x7d96b2'
white: '0xc9cdd7'
# Bright colors
bright:
black: '0x3d4950'
red: '0xba9088'
green: '0xbedbc1'
yellow: '0xf1dfb4'
blue: '0x767495'
magenta: '0xbe9cb8'
cyan: '0xbcdbff'
white: '0xdfe2ed'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0xebe4e1'
foreground: '0x484646'
# Normal colors
normal:
black: '0x3e3c3d'
red: '0x783c1f'
green: '0x497d46'
yellow: '0x8f750b'
blue: '0x3f3566'
magenta: '0x793f62'
cyan: '0x3778a9'
white: '0xd5cfcc'
# Bright colors
bright:
black: '0x484646'
red: '0xb06240'
green: '0x7bc175'
yellow: '0xdcb735'
blue: '0x5c4f89'
magenta: '0xb56895'
cyan: '0x64baff'
white: '0xebe4e1'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x31363b'
foreground: '0xbdc3c7'
# Normal colors
normal:
black: '0x232423'
red: '0xba2922'
green: '0x7e807e'
yellow: '0x4c4f4d'
blue: '0x16a085'
magenta: '0x43746a'
cyan: '0x00cccc'
white: '0xe0e0e0'
# Bright colors
bright:
black: '0x282928'
red: '0xcc372c'
green: '0x8d8f8d'
yellow: '0x4e524f'
blue: '0x13bf9d'
magenta: '0x487d72'
cyan: '0x00d1d1'
white: '0xe8e8e8'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0xfef49c'
foreground: '0x000000'
# Normal colors
normal:
black: '0x000000'
red: '0xcc0000'
green: '0x00a600'
yellow: '0x999900'
blue: '0x0000b2'
magenta: '0xb200b2'
cyan: '0x00a6b2'
white: '0xcccccc'
# Bright colors
bright:
black: '0x666666'
red: '0xe50000'
green: '0x00d900'
yellow: '0xe5e500'
blue: '0x0000ff'
magenta: '0xe500e5'
cyan: '0x00e5e5'
white: '0xe5e5e5'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0xffffff'
foreground: '0x23476a'
# Normal colors
normal:
black: '0x000000'
red: '0xb5407b'
green: '0x7bb540'
yellow: '0xb57b40'
blue: '0x407bb5'
magenta: '0x7b40b5'
cyan: '0x40b57b'
white: '0xf8f8f8'
# Bright colors
bright:
black: '0x737373'
red: '0xcd73a0'
green: '0xa0cd73'
yellow: '0xcda073'
blue: '0x73a0cd'
magenta: '0xa073cd'
cyan: '0x73cda0'
white: '0xffffff'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x1e282c'
foreground: '0xc3c7d1'
# Normal colors
normal:
black: '0x073641'
red: '0xeb606b'
green: '0xc3e88d'
yellow: '0xf7eb95'
blue: '0x80cbc3'
magenta: '0xff2490'
cyan: '0xaeddff'
white: '0xffffff'
# Bright colors
bright:
black: '0x002b36'
red: '0xeb606b'
green: '0xc3e88d'
yellow: '0xf7eb95'
blue: '0x7dc6bf'
magenta: '0x6c71c3'
cyan: '0x34434d'
white: '0xffffff'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x000000'
foreground: '0xbbbbbb'
# Normal colors
normal:
black: '0x000000'
red: '0xe52222'
green: '0xa6e32d'
yellow: '0xfc951e'
blue: '0xc48dff'
magenta: '0xfa2573'
cyan: '0x67d9f0'
white: '0xf2f2f2'
# Bright colors
bright:
black: '0x555555'
red: '0xff5555'
green: '0x55ff55'
yellow: '0xffff55'
blue: '0x5555ff'
magenta: '0xff55ff'
cyan: '0x55ffff'
white: '0xffffff'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x1d1908'
foreground: '0xcac296'
# Normal colors
normal:
black: '0x000000'
red: '0xb64c00'
green: '0x7c8b16'
yellow: '0xd3bd26'
blue: '0x616bb0'
magenta: '0x8c5a90'
cyan: '0x916c25'
white: '0xcac29a'
# Bright colors
bright:
black: '0x5e5219'
red: '0xff9149'
green: '0xb2ca3b'
yellow: '0xffe54a'
blue: '0xacb8ff'
magenta: '0xffa0ff'
cyan: '0xffbc51'
white: '0xfed698'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x2d3743'
foreground: '0xe1e1e0'
# Normal colors
normal:
black: '0x000000'
red: '0xff4242'
green: '0x74af68'
yellow: '0xffad29'
blue: '0x338f86'
magenta: '0x9414e6'
cyan: '0x23d7d7'
white: '0xe1e1e0'
# Bright colors
bright:
black: '0x555555'
red: '0xff3242'
green: '0x74cd68'
yellow: '0xffb929'
blue: '0x23d7d7'
magenta: '0xff37ff'
cyan: '0x00ede1'
white: '0xffffff'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x0d1926'
foreground: '0xd9e6f2'
# Normal colors
normal:
black: '0x000000'
red: '0xb87a7a'
green: '0x7ab87a'
yellow: '0xb8b87a'
blue: '0x7a7ab8'
magenta: '0xb87ab8'
cyan: '0x7ab8b8'
white: '0xd9d9d9'
# Bright colors
bright:
black: '0x262626'
red: '0xdbbdbd'
green: '0xbddbbd'
yellow: '0xdbdbbd'
blue: '0xbdbddb'
magenta: '0xdbbddb'
cyan: '0xbddbdb'
white: '0xffffff'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x1b1d1e'
foreground: '0xbbbbbb'
# Normal colors
normal:
black: '0x1b1d1e'
red: '0x7325fa'
green: '0x23e298'
yellow: '0x60d4df'
blue: '0xd08010'
magenta: '0xff0087'
cyan: '0xd0a843'
white: '0xbbbbbb'
# Bright colors
bright:
black: '0x555555'
red: '0x9d66f6'
green: '0x5fe0b1'
yellow: '0x6df2ff'
blue: '0xffaf00'
magenta: '0xff87af'
cyan: '0xffce51'
white: '0xffffff'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x120b0d'
foreground: '0xf7d66a'
# Normal colors
normal:
black: '0x351b0e'
red: '0x9b291c'
green: '0x636232'
yellow: '0xc36e28'
blue: '0x515c5d'
magenta: '0x9b1d29'
cyan: '0x588056'
white: '0xf7d75c'
# Bright colors
bright:
black: '0x874228'
red: '0xff4331'
green: '0xb4b264'
yellow: '0xff9566'
blue: '0x9eb2b4'
magenta: '0xff5b6a'
cyan: '0x8acd8f'
white: '0xffe598'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x2b1900'
foreground: '0xff9400'
# Normal colors
normal:
black: '0x402500'
red: '0xff9400'
green: '0xff9400'
yellow: '0xff9400'
blue: '0xff9400'
magenta: '0xff9400'
cyan: '0xff9400'
white: '0xff9400'
# Bright colors
bright:
black: '0xff9400'
red: '0xff9400'
green: '0xff9400'
yellow: '0xff9400'
blue: '0xff9400'
magenta: '0xff9400'
cyan: '0xff9400'
white: '0xff9400'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x00222b'
foreground: '0x00ccff'
# Normal colors
normal:
black: '0x003340'
red: '0x00ccff'
green: '0x00ccff'
yellow: '0x00ccff'
blue: '0x00ccff'
magenta: '0x00ccff'
cyan: '0x00ccff'
white: '0x00ccff'
# Bright colors
bright:
black: '0x00ccff'
red: '0x00ccff'
green: '0x00ccff'
yellow: '0x00ccff'
blue: '0x00ccff'
magenta: '0x00ccff'
cyan: '0x00ccff'
white: '0x00ccff'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x022b00'
foreground: '0x0bff00'
# Normal colors
normal:
black: '0x034000'
red: '0x0bff00'
green: '0x0bff00'
yellow: '0x0bff00'
blue: '0x0bff00'
magenta: '0x0bff00'
cyan: '0x0bff00'
white: '0x0bff00'
# Bright colors
bright:
black: '0x0bff00'
red: '0x0bff00'
green: '0x0bff00'
yellow: '0x0bff00'
blue: '0x0bff00'
magenta: '0x0bff00'
cyan: '0x0bff00'
white: '0x0bff00'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x2b0c00'
foreground: '0xff3600'
# Normal colors
normal:
black: '0x401200'
red: '0xff3600'
green: '0xff3600'
yellow: '0xff3600'
blue: '0xff3600'
magenta: '0xff3600'
cyan: '0xff3600'
white: '0xff3600'
# Bright colors
bright:
black: '0xff3600'
red: '0xff3600'
green: '0xff3600'
yellow: '0xff3600'
blue: '0xff3600'
magenta: '0xff3600'
cyan: '0xff3600'
white: '0xff3600'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x262626'
foreground: '0xfafafa'
# Normal colors
normal:
black: '0x3b3b3b'
red: '0xfafafa'
green: '0xfafafa'
yellow: '0xfafafa'
blue: '0xfafafa'
magenta: '0xfafafa'
cyan: '0xfafafa'
white: '0xfafafa'
# Bright colors
bright:
black: '0xfafafa'
red: '0xfafafa'
green: '0xfafafa'
yellow: '0xfafafa'
blue: '0xfafafa'
magenta: '0xfafafa'
cyan: '0xfafafa'
white: '0xfafafa'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x2b2400'
foreground: '0xffd300'
# Normal colors
normal:
black: '0x403500'
red: '0xffd300'
green: '0xffd300'
yellow: '0xffd300'
blue: '0xffd300'
magenta: '0xffd300'
cyan: '0xffd300'
white: '0xffd300'
# Bright colors
bright:
black: '0xffd300'
red: '0xffd300'
green: '0xffd300'
yellow: '0xffd300'
blue: '0xffd300'
magenta: '0xffd300'
cyan: '0xffd300'
white: '0xffd300'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x272822'
foreground: '0xf8f8f2'
# Normal colors
normal:
black: '0x75715e'
red: '0xf92672'
green: '0xa6e22e'
yellow: '0xf4bf75'
blue: '0x66d9ef'
magenta: '0xae81ff'
cyan: '0x2aa198'
white: '0xf9f8f5'
# Bright colors
bright:
black: '0x272822'
red: '0xf92672'
green: '0xa6e22e'
yellow: '0xf4bf75'
blue: '0x66d9ef'
magenta: '0xae81ff'
cyan: '0x2aa198'
white: '0xf8f8f2'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x3e3838'
foreground: '0xfbf2f3'
# Normal colors
normal:
black: '0x3e3838'
red: '0xdf7484'
green: '0xbbd87e'
yellow: '0xedce73'
blue: '0xdc9373'
magenta: '0xa9aae9'
cyan: '0xa4d7cc'
white: '0xfbf2f3'
# Bright colors
bright:
black: '0x70696a'
red: '0xdf7484'
green: '0xbbd87e'
yellow: '0xedce73'
blue: '0xdc9373'
magenta: '0xa9aae9'
cyan: '0xa4d7cc'
white: '0xfbf2f3'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x363537'
foreground: '0xfdf9f3'
# Normal colors
normal:
black: '0x363537'
red: '0xff6188'
green: '0xa9dc76'
yellow: '0xffd866'
blue: '0xfc9867'
magenta: '0xab9df2'
cyan: '0x78dce8'
white: '0xfdf9f3'
# Bright colors
bright:
black: '0x908e8f'
red: '0xff6188'
green: '0xa9dc76'
yellow: '0xffd866'
blue: '0xfc9867'
magenta: '0xab9df2'
cyan: '0x78dce8'
white: '0xfdf9f3'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x1a1a1a'
foreground: '0xc4c5b5'
# Normal colors
normal:
black: '0x1a1a1a'
red: '0xf4005f'
green: '0x98e024'
yellow: '0xfa8419'
blue: '0x9d65ff'
magenta: '0xf4005f'
cyan: '0x58d1eb'
white: '0xc4c5b5'
# Bright colors
bright:
black: '0x625e4c'
red: '0xf4005f'
green: '0x98e024'
yellow: '0xe0d561'
blue: '0x9d65ff'
magenta: '0xf4005f'
cyan: '0x58d1eb'
white: '0xf6f6ef'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x211f46'
foreground: '0xffffff'
# Normal colors
normal:
black: '0x040404'
red: '0x0f49c4'
green: '0x48b117'
yellow: '0xe87324'
blue: '0xbc0116'
magenta: '0x665b93'
cyan: '0x70a699'
white: '0xf5dcbe'
# Bright colors
bright:
black: '0x4f7cbf'
red: '0x1c96c7'
green: '0x3bff6f'
yellow: '0xefc31c'
blue: '0xfb605b'
magenta: '0x975b5a'
cyan: '0x1eff8e'
white: '0xf6f5fb'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x222222'
foreground: '0xa0a0a0'
# Normal colors
normal:
black: '0x383838'
red: '0xa95551'
green: '0x666666'
yellow: '0xa98051'
blue: '0x657d3e'
magenta: '0x767676'
cyan: '0xc9c9c9'
white: '0xd0b8a3'
# Bright colors
bright:
black: '0x474747'
red: '0xa97775'
green: '0x8c8c8c'
yellow: '0xa99175'
blue: '0x98bd5e'
magenta: '0xa3a3a3'
cyan: '0xdcdcdc'
white: '0xd8c8bb'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x20242d'
foreground: '0xc7c8ff'
# Normal colors
normal:
black: '0x20242d'
red: '0xff8e8e'
green: '0x7efdd0'
yellow: '0xfcad3f'
blue: '0x69b4f9'
magenta: '0xdd92f6'
cyan: '0x8ce8ff'
white: '0xc9cccd'
# Bright colors
bright:
black: '0x20242d'
red: '0xff8e8e'
green: '0x7efdd0'
yellow: '0xfcad3f'
blue: '0x69b4f9'
magenta: '0xdd92f6'
cyan: '0x8ce8ff'
white: '0xc9cccd'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x271f19'
foreground: '0xffffff'
# Normal colors
normal:
black: '0x000000'
red: '0x800000'
green: '0x61ce3c'
yellow: '0xfbde2d'
blue: '0x253b76'
magenta: '0xff0080'
cyan: '0x8da6ce'
white: '0xf8f8f8'
# Bright colors
bright:
black: '0x000000'
red: '0x800000'
green: '0x61ce3c'
yellow: '0xfbde2d'
blue: '0x253b76'
magenta: '0xff0080'
cyan: '0x8da6ce'
white: '0xf8f8f8'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x758480'
foreground: '0x23476a'
# Normal colors
normal:
black: '0x000000'
red: '0xdd6f00'
green: '0x00dd6f'
yellow: '0x6fdd00'
blue: '0x6f00dd'
magenta: '0xdd006f'
cyan: '0x006fdd'
white: '0xf2f2f2'
# Bright colors
bright:
black: '0x7d7d7d'
red: '0xffb974'
green: '0x74ffb9'
yellow: '0xb9ff74'
blue: '0xb974ff'
magenta: '0xff74b9'
cyan: '0x74b9ff'
white: '0xffffff'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x1c1e22'
foreground: '0xe6e8ef'
# Normal colors
normal:
black: '0x23252b'
red: '0xb54036'
green: '0x5ab977'
yellow: '0xdeb566'
blue: '0x6a7c93'
magenta: '0xa4799d'
cyan: '0x3f94a8'
white: '0xe6e8ef'
# Bright colors
bright:
black: '0x23252b'
red: '0xb54036'
green: '0x5ab977'
yellow: '0xdeb566'
blue: '0x6a7c93'
magenta: '0xa4799d'
cyan: '0x3f94a8'
white: '0xebedf2'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x011627'
foreground: '0xd6deeb'
# Normal colors
normal:
black: '0x011627'
red: '0xef5350'
green: '0x22da6e'
yellow: '0xaddb67'
blue: '0x82aaff'
magenta: '0xc792ea'
cyan: '0x21c7a8'
white: '0xffffff'
# Bright colors
bright:
black: '0x575656'
red: '0xef5350'
green: '0x22da6e'
yellow: '0xffeb95'
blue: '0x82aaff'
magenta: '0xc792ea'
cyan: '0x7fdbca'
white: '0xffffff'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x192330'
foreground: '0xcdcecf'
# Normal colors
normal:
black: '0x393b44'
red: '0xc94f6d'
green: '0x81b29a'
yellow: '0xdbc074'
blue: '0x719cd6'
magenta: '0x9d79d6'
cyan: '0x63cdcf'
white: '0xdfdfe0'
# Bright colors
bright:
black: '0x575860'
red: '0xd16983'
green: '0x8ebaa4'
yellow: '0xe0c989'
blue: '0x86abdc'
magenta: '0xbaa1e2'
cyan: '0x7ad4d6'
white: '0xe4e4e5'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x000000'
foreground: '0xbbbbbb'
# Normal colors
normal:
black: '0x4c4c4c'
red: '0xbb0000'
green: '0x5fde8f'
yellow: '0xf3f167'
blue: '0x276bd8'
magenta: '0xbb00bb'
cyan: '0x00dadf'
white: '0xbbbbbb'
# Bright colors
bright:
black: '0x555555'
red: '0xff5555'
green: '0x55ff55'
yellow: '0xffff55'
blue: '0x5555ff'
magenta: '0xff55ff'
cyan: '0x55ffff'
white: '0xffffff'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x171717'
foreground: '0xbbbbbb'
# Normal colors
normal:
black: '0x4c4c4c'
red: '0xbb0000'
green: '0x04f623'
yellow: '0xf3f167'
blue: '0x64d0f0'
magenta: '0xce6fdb'
cyan: '0x00dadf'
white: '0xbbbbbb'
# Bright colors
bright:
black: '0x555555'
red: '0xff5555'
green: '0x7df71d'
yellow: '0xffff55'
blue: '0x62cbe8'
magenta: '0xff9bf5'
cyan: '0x00ccd8'
white: '0xffffff'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x2f2f2f'
foreground: '0xdfdfdf'
# Normal colors
normal:
black: '0x373d48'
red: '0x9b3e46'
green: '0x095b32'
yellow: '0x808020'
blue: '0x1d3e6f'
magenta: '0x823065'
cyan: '0x3a7458'
white: '0x828282'
# Bright colors
bright:
black: '0x5c6370'
red: '0xd0555f'
green: '0x119955'
yellow: '0xdfe048'
blue: '0x4674b8'
magenta: '0xed86c9'
cyan: '0x70d2a4'
white: '0xdfdfdf'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0xebeaf2'
foreground: '0x004f7c'
# Normal colors
normal:
black: '0x003b4e'
red: '0xe64569'
green: '0x069f5f'
yellow: '0xdab752'
blue: '0x439ecf'
magenta: '0xd961dc'
cyan: '0x00b1be'
white: '0xb3b3b3'
# Bright colors
bright:
black: '0x3e89a1'
red: '0xe4859a'
green: '0xa2cca1'
yellow: '0xe1e387'
blue: '0x6fbbe2'
magenta: '0xe586e7'
cyan: '0x96dcda'
white: '0xdedede'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x2e3440'
foreground: '0xd8dee9'
# Normal colors
normal:
black: '0x3b4252'
red: '0xbf616a'
green: '0xa3be8c'
yellow: '0xebcb8b'
blue: '0x81a1c1'
magenta: '0xb48ead'
cyan: '0x88c0d0'
white: '0xe5e9f0'
# Bright colors
bright:
black: '0x4c566a'
red: '0xbf616a'
green: '0xa3be8c'
yellow: '0xebcb8b'
blue: '0x81a1c1'
magenta: '0xb48ead'
cyan: '0x8fbcbb'
white: '0xeceff4'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0xdfdbc3'
foreground: '0x3b2322'
# Normal colors
normal:
black: '0x000000'
red: '0xcc0000'
green: '0x009600'
yellow: '0xd06b00'
blue: '0x0000cc'
magenta: '0xcc00cc'
cyan: '0x0087cc'
white: '0xcccccc'
# Bright colors
bright:
black: '0x808080'
red: '0xcc0000'
green: '0x009600'
yellow: '0xd06b00'
blue: '0x0000cc'
magenta: '0xcc00cc'
cyan: '0x0087cc'
white: '0xffffff'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x283033'
foreground: '0xcdcdcd'
# Normal colors
normal:
black: '0x000000'
red: '0xa60001'
green: '0x00bb00'
yellow: '0xfecd22'
blue: '0x3a9bdb'
magenta: '0xbb00bb'
cyan: '0x00bbbb'
white: '0xbbbbbb'
# Bright colors
bright:
black: '0x555555'
red: '0xff0003'
green: '0x93c863'
yellow: '0xfef874'
blue: '0xa1d7ff'
magenta: '0xff55ff'
cyan: '0x55ffff'
white: '0xffffff'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x1c1f27'
foreground: '0x979cac'
# Normal colors
normal:
black: '0x4f4f4f'
red: '0xaf4b57'
green: '0xafd383'
yellow: '0xe5c079'
blue: '0x7d90a4'
magenta: '0xa4799d'
cyan: '0x85a6a5'
white: '0xeeedee'
# Bright colors
bright:
black: '0x7b7b7b'
red: '0xaf4b57'
green: '0xceffab'
yellow: '0xfffecc'
blue: '0xb5dcfe'
magenta: '0xfb9bfe'
cyan: '0xdfdffd'
white: '0xfefffe'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x224fbc'
foreground: '0xffffff'
# Normal colors
normal:
black: '0x000000'
red: '0x990000'
green: '0x00a600'
yellow: '0x999900'
blue: '0x0000b2'
magenta: '0xb200b2'
cyan: '0x00a6b2'
white: '0xbfbfbf'
# Bright colors
bright:
black: '0x666666'
red: '0xe50000'
green: '0x00d900'
yellow: '0xe5e500'
blue: '0x0000ff'
magenta: '0xe500e5'
cyan: '0x00e5e5'
white: '0xe5e5e5'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x121b21'
foreground: '0xb3b8c3'
# Normal colors
normal:
black: '0x121c21'
red: '0xe44754'
green: '0x89bd82'
yellow: '0xf7bd51'
blue: '0x5486c0'
magenta: '0xb77eb8'
cyan: '0x50a5a4'
white: '0xffffff'
# Bright colors
bright:
black: '0x52606b'
red: '0xe44754'
green: '0x89bd82'
yellow: '0xf7bd51'
blue: '0x5486c0'
magenta: '0xb77eb8'
cyan: '0x50a5a4'
white: '0xffffff'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x222125'
foreground: '0x8a8dae'
# Normal colors
normal:
black: '0x000000'
red: '0xac2e31'
green: '0x31ac61'
yellow: '0xac4300'
blue: '0x2d57ac'
magenta: '0xb08528'
cyan: '0x1fa6ac'
white: '0x8a8eac'
# Bright colors
bright:
black: '0x5b3725'
red: '0xff3d48'
green: '0x3bff99'
yellow: '0xff5e1e'
blue: '0x4488ff'
magenta: '0xffc21d'
cyan: '0x1ffaff'
white: '0x5b6ea7'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x191622'
foreground: '0xabb2bf'
# Normal colors
normal:
black: '0x191622'
red: '0xe96379'
green: '0x67e480'
yellow: '0xe89e64'
blue: '0x78d1e1'
magenta: '0x988bc7'
cyan: '0xff79c6'
white: '0xabb2bf'
# Bright colors
bright:
black: '0x000000'
red: '0xe96379'
green: '0x67e480'
yellow: '0xe89e64'
blue: '0x78d1e1'
magenta: '0x988bc7'
cyan: '0xff79c6'
white: '0xffffff'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x1e2127'
foreground: '0x5c6370'
# Normal colors
normal:
black: '0x000000'
red: '0xe06c75'
green: '0x98c379'
yellow: '0xd19a66'
blue: '0x61afef'
magenta: '0xc678dd'
cyan: '0x56b6c2'
white: '0xabb2bf'
# Bright colors
bright:
black: '0x5c6370'
red: '0xe06c75'
green: '0x98c379'
yellow: '0xd19a66'
blue: '0x61afef'
magenta: '0xc678dd'
cyan: '0x56b6c2'
white: '0xfffefe'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x000000'
foreground: '0xdcdfe4'
# Normal colors
normal:
black: '0x282c34'
red: '0xe06c75'
green: '0x98c379'
yellow: '0xe5c07b'
blue: '0x61afef'
magenta: '0xc678dd'
cyan: '0x56b6c2'
white: '0xdcdfe4'
# Bright colors
bright:
black: '0x282c34'
red: '0xe06c75'
green: '0x98c379'
yellow: '0xe5c07b'
blue: '0x61afef'
magenta: '0xc678dd'
cyan: '0x56b6c2'
white: '0xdcdfe4'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0xf8f8f8'
foreground: '0x2a2b32'
# Normal colors
normal:
black: '0x000000'
red: '0xda3e39'
green: '0x41933e'
yellow: '0x855504'
blue: '0x315eee'
magenta: '0x930092'
cyan: '0x0e6fad'
white: '0x8e8f96'
# Bright colors
bright:
black: '0x2a2b32'
red: '0xda3e39'
green: '0x41933e'
yellow: '0x855504'
blue: '0x315eee'
magenta: '0x930092'
cyan: '0x0e6fad'
white: '0xfffefe'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x292d3e'
foreground: '0xbfc7d5'
# Normal colors
normal:
black: '0x292d3e'
red: '0xf07178'
green: '0xc3e88d'
yellow: '0xffcb6b'
blue: '0x82aaff'
magenta: '0xc792ea'
cyan: '0x60adec'
white: '0xabb2bf'
# Bright colors
bright:
black: '0x959dcb'
red: '0xf07178'
green: '0xc3e88d'
yellow: '0xff5572'
blue: '0x82aaff'
magenta: '0xffcb6b'
cyan: '0x676e95'
white: '0xfffefe'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x232e37'
foreground: '0xd9e6f2'
# Normal colors
normal:
black: '0x0a0a0a'
red: '0xab8f74'
green: '0x74ab8f'
yellow: '0x8fab74'
blue: '0x8f74ab'
magenta: '0xab748f'
cyan: '0x748fab'
white: '0xf2f2f2'
# Bright colors
bright:
black: '0x5d5d5d'
red: '0xff1d62'
green: '0x9cc3af'
yellow: '0xffd00a'
blue: '0xaf9cc3'
magenta: '0xff1d62'
cyan: '0x4bb8fd'
white: '0xa020f0'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x1d1e20'
foreground: '0xf0f0f0'
# Normal colors
normal:
black: '0x1f1f20'
red: '0xfb055a'
green: '0x26ffd4'
yellow: '0xfdaa5a'
blue: '0x5c9fff'
magenta: '0xfc59a6'
cyan: '0x26ffd4'
white: '0xf0f0f0'
# Bright colors
bright:
black: '0x5c6370'
red: '0xfb055a'
green: '0x26ffd4'
yellow: '0xfebe7e'
blue: '0x55adff'
magenta: '0xfd95d0'
cyan: '0x26ffd4'
white: '0xf0f0f0'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x1c1c1c'
foreground: '0xd0d0d0'
# Normal colors
normal:
black: '0x1c1c1c'
red: '0xaf005f'
green: '0x5faf00'
yellow: '0xd7af5f'
blue: '0x5fafd7'
magenta: '0x808080'
cyan: '0xd7875f'
white: '0xd0d0d0'
# Bright colors
bright:
black: '0x585858'
red: '0x5faf5f'
green: '0xafd700'
yellow: '0xaf87d7'
blue: '0xffaf00'
magenta: '0xff5faf'
cyan: '0x00afaf'
white: '0x5f8787'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0xeeeeee'
foreground: '0x444444'
# Normal colors
normal:
black: '0xeeeeee'
red: '0xaf0000'
green: '0x008700'
yellow: '0x5f8700'
blue: '0x0087af'
magenta: '0x878787'
cyan: '0x005f87'
white: '0x444444'
# Bright colors
bright:
black: '0xbcbcbc'
red: '0xd70000'
green: '0xd70087'
yellow: '0x8700af'
blue: '0xd75f00'
magenta: '0xd75f00'
cyan: '0x005faf'
white: '0x005f87'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x2f1e2e'
foreground: '0xa39e9b'
# Normal colors
normal:
black: '0x2f1e2e'
red: '0xef6155'
green: '0x48b685'
yellow: '0xfec418'
blue: '0x06b6ef'
magenta: '0x815ba4'
cyan: '0x5bc4bf'
white: '0xa39e9b'
# Bright colors
bright:
black: '0x776e71'
red: '0xef6155'
green: '0x48b685'
yellow: '0xfec418'
blue: '0x06b6ef'
magenta: '0x815ba4'
cyan: '0x5bc4bf'
white: '0xe7e9db'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x000000'
foreground: '0xf2f2f2'
# Normal colors
normal:
black: '0x2a2a2a'
red: '0xff0000'
green: '0x79ff0f'
yellow: '0xd3bf00'
blue: '0x396bd7'
magenta: '0xb449be'
cyan: '0x66ccff'
white: '0xbbbbbb'
# Bright colors
bright:
black: '0x666666'
red: '0xff0080'
green: '0x66ff66'
yellow: '0xf3d64e'
blue: '0x709aed'
magenta: '0xdb67e6'
cyan: '0x7adff2'
white: '0xffffff'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x212121'
foreground: '0xf1f1f1'
# Normal colors
normal:
black: '0x212121'
red: '0xc30771'
green: '0x10a778'
yellow: '0xa89c14'
blue: '0x008ec4'
magenta: '0x523c79'
cyan: '0x20a5ba'
white: '0xd9d9d9'
# Bright colors
bright:
black: '0x424242'
red: '0xfb007a'
green: '0x5fd7af'
yellow: '0xf3e430'
blue: '0x20bbfc'
magenta: '0x6855de'
cyan: '0x4fb8cc'
white: '0xf1f1f1'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0xf1f1f1'
foreground: '0x424242'
# Normal colors
normal:
black: '0x212121'
red: '0xc30771'
green: '0x10a778'
yellow: '0xa89c14'
blue: '0x008ec4'
magenta: '0x523c79'
cyan: '0x20a5ba'
white: '0xd9d9d9'
# Bright colors
bright:
black: '0x424242'
red: '0xfb007a'
green: '0x5fd7af'
yellow: '0xf3e430'
blue: '0x20bbfc'
magenta: '0x6855de'
cyan: '0x4fb8cc'
white: '0xf1f1f1'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x000000'
foreground: '0xc7c7c7'
# Normal colors
normal:
black: '0x353535'
red: '0xe64569'
green: '0x89d287'
yellow: '0xdab752'
blue: '0x439ecf'
magenta: '0xd961dc'
cyan: '0x64aaaf'
white: '0xb3b3b3'
# Bright colors
bright:
black: '0x535353'
red: '0xe4859a'
green: '0xa2cca1'
yellow: '0xe1e387'
blue: '0x6fbbe2'
magenta: '0xe586e7'
cyan: '0x96dcda'
white: '0xdedede'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x241f33'
foreground: '0xd1cae8'
# Normal colors
normal:
black: '0x2f2942'
red: '0xff857f'
green: '0x48b685'
yellow: '0xe6c000'
blue: '0xae81ff'
magenta: '0xef6155'
cyan: '0xc2ffdf'
white: '0xf8f8f2'
# Bright colors
bright:
black: '0x75507b'
red: '0xf1568e'
green: '0x5adba2'
yellow: '0xd5a425'
blue: '0xc5a3ff'
magenta: '0xef6155'
cyan: '0xc2ffff'
white: '0xf8f8f0'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x1c1c1c'
foreground: '0xd0d0d0'
# Normal colors
normal:
black: '0x2f2e2d'
red: '0xa36666'
green: '0x90a57d'
yellow: '0xd7af87'
blue: '0x7fa5bd'
magenta: '0xc79ec4'
cyan: '0x8adbb4'
white: '0xd0d0d0'
# Bright colors
bright:
black: '0x4a4845'
red: '0xd78787'
green: '0xafbea2'
yellow: '0xe4c9af'
blue: '0xa1bdce'
magenta: '0xd7beda'
cyan: '0xb1e7dd'
white: '0xefefef'

View File

@@ -0,0 +1,28 @@
colors:
# Default colors
primary:
background: '0x052454'
foreground: '0xf6f6f7'
# Normal colors
normal:
black: '0x000000'
red: '0x7e0008'
green: '0x098003'
yellow: '0xc4a000'
blue: '0x010083'
magenta: '0xd33682'
cyan: '0x0e807f'
white: '0x7f7c7f'
# Bright colors
bright:
black: '0x808080'
red: '0xef2929'
green: '0x1cfe3c'
yellow: '0xfefe45'
blue: '0x268ad2'
magenta: '0xfe13fa'
cyan: '0x29fffe'
white: '0xc2c1c3'

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#2C2C2C" # HOST
export COLOR_02="#CC231C" # SYNTAX_STRING
export COLOR_03="#689D69" # COMMAND
export COLOR_04="#D79922" # COMMAND_COLOR2
export COLOR_05="#366B71" # PATH
export COLOR_06="#4E5165" # SYNTAX_VAR
export COLOR_07="#458587" # PROMP
export COLOR_08="#C8BB97" #
export COLOR_09="#777777" #
export COLOR_10="#CC231C" # COMMAND_ERROR
export COLOR_11="#689D69" # EXEC
export COLOR_12="#D79922" #
export COLOR_13="#366B71" # FOLDER
export COLOR_14="#4E5165" #
export COLOR_15="#458587" #
export COLOR_16="#C8BB97" #
export BACKGROUND_COLOR="#2C2C2C" # Background Color
export FOREGROUND_COLOR="#DEDEDE" # Text
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor
export PROFILE_NAME="Chameleon"
# =============================================================== #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#090300" # HOST
export COLOR_02="#db2d20" # SYNTAX_STRING
export COLOR_03="#01a252" # COMMAND
export COLOR_04="#fded02" # COMMAND_COLOR2
export COLOR_05="#01a0e4" # PATH
export COLOR_06="#a16a94" # SYNTAX_VAR
export COLOR_07="#b5e4f4" # PROMP
export COLOR_08="#a5a2a2" #
export COLOR_09="#5c5855" #
export COLOR_10="#e8bbd0" # COMMAND_ERROR
export COLOR_11="#3a3432" # EXEC
export COLOR_12="#4a4543" #
export COLOR_13="#807d7c" # FOLDER
export COLOR_14="#d6d5d4" #
export COLOR_15="#cdab53" #
export COLOR_16="#f7f7f7" #
export BACKGROUND_COLOR="#f7f7f7" # Background Color
export FOREGROUND_COLOR="#4a4543" # Text
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor
export PROFILE_NAME="3024 Day"
# =============================================================== #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#090300" # HOST
export COLOR_02="#db2d20" # SYNTAX_STRING
export COLOR_03="#01a252" # COMMAND
export COLOR_04="#fded02" # COMMAND_COLOR2
export COLOR_05="#01a0e4" # PATH
export COLOR_06="#a16a94" # SYNTAX_VAR
export COLOR_07="#b5e4f4" # PROMP
export COLOR_08="#a5a2a2" #
export COLOR_09="#5c5855" #
export COLOR_10="#e8bbd0" # COMMAND_ERROR
export COLOR_11="#3a3432" # EXEC
export COLOR_12="#4a4543" #
export COLOR_13="#807d7c" # FOLDER
export COLOR_14="#d6d5d4" #
export COLOR_15="#cdab53" #
export COLOR_16="#f7f7f7" #
export BACKGROUND_COLOR="#090300" # Background Color
export FOREGROUND_COLOR="#a5a2a2" # Text
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor
export PROFILE_NAME="3024 Night"
# =============================================================== #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#363636" # HOST
export COLOR_02="#ff0883" # SYNTAX_STRING
export COLOR_03="#83ff08" # COMMAND
export COLOR_04="#ff8308" # COMMAND_COLOR2
export COLOR_05="#0883ff" # PATH
export COLOR_06="#8308ff" # SYNTAX_VAR
export COLOR_07="#08ff83" # PROMP
export COLOR_08="#b6b6b6" #
export COLOR_09="#424242" #
export COLOR_10="#ff1e8e" # COMMAND_ERROR
export COLOR_11="#8eff1e" # EXEC
export COLOR_12="#ff8e1e" #
export COLOR_13="#1e8eff" # FOLDER
export COLOR_14="#8e1eff" #
export COLOR_15="#1eff8e" #
export COLOR_16="#c2c2c2" #
export BACKGROUND_COLOR="#0d1926" # Background Color
export FOREGROUND_COLOR="#b4e1fd" # Text
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor
export PROFILE_NAME="Aci"
# =============================================================== #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#3f3f3f" # HOST
export COLOR_02="#ff0883" # SYNTAX_STRING
export COLOR_03="#83ff08" # COMMAND
export COLOR_04="#ff8308" # COMMAND_COLOR2
export COLOR_05="#0883ff" # PATH
export COLOR_06="#8308ff" # SYNTAX_VAR
export COLOR_07="#08ff83" # PROMP
export COLOR_08="#bebebe" #
export COLOR_09="#474747" #
export COLOR_10="#ff1e8e" # COMMAND_ERROR
export COLOR_11="#8eff1e" # EXEC
export COLOR_12="#ff8e1e" #
export COLOR_13="#1e8eff" # FOLDER
export COLOR_14="#8e1eff" #
export COLOR_15="#1eff8e" #
export COLOR_16="#c4c4c4" #
export BACKGROUND_COLOR="#1f1305" # Background Color
export FOREGROUND_COLOR="#b4e1fd" # Text
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor
export PROFILE_NAME="Aco"
# =============================================================== #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#050404" # HOST
export COLOR_02="#bd0013" # SYNTAX_STRING
export COLOR_03="#4ab118" # COMMAND
export COLOR_04="#e7741e" # COMMAND_COLOR2
export COLOR_05="#0f4ac6" # PATH
export COLOR_06="#665993" # SYNTAX_VAR
export COLOR_07="#70a598" # PROMP
export COLOR_08="#f8dcc0" #
export COLOR_09="#4e7cbf" #
export COLOR_10="#fc5f5a" # COMMAND_ERROR
export COLOR_11="#9eff6e" # EXEC
export COLOR_12="#efc11a" #
export COLOR_13="#1997c6" # FOLDER
export COLOR_14="#9b5953" #
export COLOR_15="#c8faf4" #
export COLOR_16="#f6f5fb" #
export BACKGROUND_COLOR="#1f1d45" # Background Color
export FOREGROUND_COLOR="#f8dcc0" # Text
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor
export PROFILE_NAME="Adventure Time"
# =============================================================== #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#151515" # HOST
export COLOR_02="#a53c23" # SYNTAX_STRING
export COLOR_03="#7b9246" # COMMAND
export COLOR_04="#d3a04d" # COMMAND_COLOR2
export COLOR_05="#6c99bb" # PATH
export COLOR_06="#9f4e85" # SYNTAX_VAR
export COLOR_07="#7dd6cf" # PROMP
export COLOR_08="#d0d0d0" #
export COLOR_09="#505050" #
export COLOR_10="#a53c23" # COMMAND_ERROR
export COLOR_11="#7b9246" # EXEC
export COLOR_12="#d3a04d" #
export COLOR_13="#547c99" # FOLDER
export COLOR_14="#9f4e85" #
export COLOR_15="#7dd6cf" #
export COLOR_16="#f5f5f5" #
export BACKGROUND_COLOR="#222222" # Background Color
export FOREGROUND_COLOR="#d0d0d0" # Text
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor
export PROFILE_NAME="Afterglow"
# =============================================================== #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#112616" # HOST
export COLOR_02="#7f2b27" # SYNTAX_STRING
export COLOR_03="#2f7e25" # COMMAND
export COLOR_04="#717f24" # COMMAND_COLOR2
export COLOR_05="#2f6a7f" # PATH
export COLOR_06="#47587f" # SYNTAX_VAR
export COLOR_07="#327f77" # PROMP
export COLOR_08="#647d75" #
export COLOR_09="#3c4812" #
export COLOR_10="#e08009" # COMMAND_ERROR
export COLOR_11="#18e000" # EXEC
export COLOR_12="#bde000" #
export COLOR_13="#00aae0" # FOLDER
export COLOR_14="#0058e0" #
export COLOR_15="#00e0c4" #
export COLOR_16="#73fa91" #
export BACKGROUND_COLOR="#0f1610" # Background Color
export FOREGROUND_COLOR="#637d75" # Text
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor
export PROFILE_NAME="Alien Blood"
# =============================================================== #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#232323" # HOST
export COLOR_02="#ff000f" # SYNTAX_STRING
export COLOR_03="#8ce10b" # COMMAND
export COLOR_04="#ffb900" # COMMAND_COLOR2
export COLOR_05="#008df8" # PATH
export COLOR_06="#6d43a6" # SYNTAX_VAR
export COLOR_07="#00d8eb" # PROMP
export COLOR_08="#ffffff" #
export COLOR_09="#444444" #
export COLOR_10="#ff2740" # COMMAND_ERROR
export COLOR_11="#abe15b" # EXEC
export COLOR_12="#ffd242" #
export COLOR_13="#0092ff" # FOLDER
export COLOR_14="#9a5feb" #
export COLOR_15="#67fff0" #
export COLOR_16="#ffffff" #
export BACKGROUND_COLOR="#0e1019" # Background Color
export FOREGROUND_COLOR="#fffaf4" # Text
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor
export PROFILE_NAME="Argonaut"
# =============================================================== #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#3d352a" # HOST
export COLOR_02="#cd5c5c" # SYNTAX_STRING
export COLOR_03="#86af80" # COMMAND
export COLOR_04="#e8ae5b" # COMMAND_COLOR2
export COLOR_05="#6495ed" # PATH
export COLOR_06="#deb887" # SYNTAX_VAR
export COLOR_07="#b0c4de" # PROMP
export COLOR_08="#bbaa99" #
export COLOR_09="#554444" #
export COLOR_10="#cc5533" # COMMAND_ERROR
export COLOR_11="#88aa22" # EXEC
export COLOR_12="#ffa75d" #
export COLOR_13="#87ceeb" # FOLDER
export COLOR_14="#996600" #
export COLOR_15="#b0c4de" #
export COLOR_16="#ddccbb" #
export BACKGROUND_COLOR="#1c1c1c" # Background Color
export FOREGROUND_COLOR="#ddeedd" # Text
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor
export PROFILE_NAME="Arthur"
# =============================================================== #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#000000" # HOST
export COLOR_02="#fd5ff1" # SYNTAX_STRING
export COLOR_03="#87c38a" # COMMAND
export COLOR_04="#ffd7b1" # COMMAND_COLOR2
export COLOR_05="#85befd" # PATH
export COLOR_06="#b9b6fc" # SYNTAX_VAR
export COLOR_07="#85befd" # PROMP
export COLOR_08="#e0e0e0" #
export COLOR_09="#000000" #
export COLOR_10="#fd5ff1" # COMMAND_ERROR
export COLOR_11="#94fa36" # EXEC
export COLOR_12="#f5ffa8" #
export COLOR_13="#96cbfe" # FOLDER
export COLOR_14="#b9b6fc" #
export COLOR_15="#85befd" #
export COLOR_16="#e0e0e0" #
export BACKGROUND_COLOR="#161719" # Background Color
export FOREGROUND_COLOR="#c5c8c6" # Text
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor
export PROFILE_NAME="Atom"
# =============================================================== #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#110f18" # Black
export COLOR_02="#ff6767" # Red
export COLOR_03="#61ffca" # Green
export COLOR_04="#ffca85" # Yellow
export COLOR_05="#a277ff" # Blue
export COLOR_06="#a277ff" # Magenta
export COLOR_07="#61ffca" # Cyan
export COLOR_08="#edecee" # Light gray
export COLOR_09="#6d6d6d" # Dark gray
export COLOR_10="#ffca85" # Light Red
export COLOR_11="#a277ff" # Light Green
export COLOR_12="#ffca85" # Light Yellow
export COLOR_13="#a277ff" # Light Blue
export COLOR_14="#a277ff" # Light Magenta
export COLOR_15="#61ffca" # Light Cyan
export COLOR_16="#edecee" # White
export BACKGROUND_COLOR="#15141B" # Background Color
export FOREGROUND_COLOR="#edecee" # Foreground Color (text)
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor color
export PROFILE_NAME="Aura"
# =============================================================== #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#0A0E14" # HOST
export COLOR_02="#FF3333" # SYNTAX_STRING
export COLOR_03="#C2D94C" # COMMAND
export COLOR_04="#FF8F40" # COMMAND_COLOR2
export COLOR_05="#59C2FF" # PATH
export COLOR_06="#FFEE99" # SYNTAX_VAR
export COLOR_07="#95E6CB" # PROMP
export COLOR_08="#B3B1AD" #
export COLOR_09="#4D5566" #
export COLOR_10="#FF3333" # COMMAND_ERROR
export COLOR_11="#C2D94C" # EXEC
export COLOR_12="#FF8F40" #
export COLOR_13="#59C2FF" # FOLDER
export COLOR_14="#FFEE99" #
export COLOR_15="#95E6CB" #
export COLOR_16="#B3B1AD" #
export BACKGROUND_COLOR="#0A0E14" # Background Color
export FOREGROUND_COLOR="#B3B1AD" # Foreground Color (text)
export CURSOR_COLOR="#E6B450" # Cursor color
export PROFILE_NAME="Ayu Dark"
# =============================================================== #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#575F66" # HOST
export COLOR_02="#F51818" # SYNTAX_STRING
export COLOR_03="#86B300" # COMMAND
export COLOR_04="#F2AE49" # COMMAND_COLOR2
export COLOR_05="#399EE6" # PATH
export COLOR_06="#A37ACC" # SYNTAX_VAR
export COLOR_07="#4CBF99" # PROMP
export COLOR_08="#FAFAFA" #
export COLOR_09="#8A9199" #
export COLOR_10="#F51818" # COMMAND_ERROR
export COLOR_11="#86B300" # EXEC
export COLOR_12="#F2AE49" #
export COLOR_13="#399EE6" # FOLDER
export COLOR_14="#A37ACC" #
export COLOR_15="#4CBF99" #
export COLOR_16="#FAFAFA" #
export BACKGROUND_COLOR="#FAFAFA" # Background Color
export FOREGROUND_COLOR="#575F66" # Foreground Color (text)
export CURSOR_COLOR="#FF9940" # Cursor color
export PROFILE_NAME="Ayu Light"
# =============================================================== #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#1F2430" # HOST
export COLOR_02="#FF3333" # SYNTAX_STRING
export COLOR_03="#BAE67E" # COMMAND
export COLOR_04="#FFA759" # COMMAND_COLOR2
export COLOR_05="#73D0FF" # PATH
export COLOR_06="#D4BFFF" # SYNTAX_VAR
export COLOR_07="#95E6CB" # PROMP
export COLOR_08="#CBCCC6" #
export COLOR_09="#707A8C" #
export COLOR_10="#FF3333" # COMMAND_ERROR
export COLOR_11="#BAE67E" # EXEC
export COLOR_12="#FFA759" #
export COLOR_13="#73D0FF" # FOLDER
export COLOR_14="#D4BFFF" #
export COLOR_15="#95E6CB" #
export COLOR_16="#CBCCC6" #
export BACKGROUND_COLOR="#1F2430" # Background Color
export FOREGROUND_COLOR="#CBCCC6" # Foreground Color (text)
export CURSOR_COLOR="#FFCC66" # Cursor color
export PROFILE_NAME="Ayu Mirage"
# =============================================================== #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#000000" # HOST
export COLOR_02="#ac6d74" # SYNTAX_STRING
export COLOR_03="#74ac6d" # COMMAND
export COLOR_04="#aca46d" # COMMAND_COLOR2
export COLOR_05="#6d74ac" # PATH
export COLOR_06="#a46dac" # SYNTAX_VAR
export COLOR_07="#6daca4" # PROMP
export COLOR_08="#e6e6e6" #
export COLOR_09="#262626" #
export COLOR_10="#d6b8bc" # COMMAND_ERROR
export COLOR_11="#bcd6b8" # EXEC
export COLOR_12="#d6d3b8" #
export COLOR_13="#b8bcd6" # FOLDER
export COLOR_14="#d3b8d6" #
export COLOR_15="#b8d6d3" #
export COLOR_16="#ffffff" #
export BACKGROUND_COLOR="#09111a" # Background Color
export FOREGROUND_COLOR="#d9e6f2" # Text
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor
export PROFILE_NAME="Azu"
# =============================================================== #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#20111b" # HOST
export COLOR_02="#be100e" # SYNTAX_STRING
export COLOR_03="#858162" # COMMAND
export COLOR_04="#eaa549" # COMMAND_COLOR2
export COLOR_05="#426a79" # PATH
export COLOR_06="#97522c" # SYNTAX_VAR
export COLOR_07="#989a9c" # PROMP
export COLOR_08="#968c83" #
export COLOR_09="#5e5252" #
export COLOR_10="#be100e" # COMMAND_ERROR
export COLOR_11="#858162" # EXEC
export COLOR_12="#eaa549" #
export COLOR_13="#426a79" # FOLDER
export COLOR_14="#97522c" #
export COLOR_15="#989a9c" #
export COLOR_16="#d5ccba" #
export BACKGROUND_COLOR="#d5ccba" # Background Color
export FOREGROUND_COLOR="#45373c" # Text
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor
export PROFILE_NAME="Belafonte Day"
# =============================================================== #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#20111b" # HOST
export COLOR_02="#be100e" # SYNTAX_STRING
export COLOR_03="#858162" # COMMAND
export COLOR_04="#eaa549" # COMMAND_COLOR2
export COLOR_05="#426a79" # PATH
export COLOR_06="#97522c" # SYNTAX_VAR
export COLOR_07="#989a9c" # PROMP
export COLOR_08="#968c83" #
export COLOR_09="#5e5252" #
export COLOR_10="#be100e" # COMMAND_ERROR
export COLOR_11="#858162" # EXEC
export COLOR_12="#eaa549" #
export COLOR_13="#426a79" # FOLDER
export COLOR_14="#97522c" #
export COLOR_15="#989a9c" #
export COLOR_16="#d5ccba" #
export BACKGROUND_COLOR="#20111b" # Background Color
export FOREGROUND_COLOR="#968c83" # Text
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor
export PROFILE_NAME="Belafonte Night"
# =============================================================== #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#2c2423" # HOST
export COLOR_02="#f557a0" # SYNTAX_STRING
export COLOR_03="#a9ee55" # COMMAND
export COLOR_04="#f5a255" # COMMAND_COLOR2
export COLOR_05="#5ea2ec" # PATH
export COLOR_06="#a957ec" # SYNTAX_VAR
export COLOR_07="#5eeea0" # PROMP
export COLOR_08="#918988" #
export COLOR_09="#918988" #
export COLOR_10="#f579b2" # COMMAND_ERROR
export COLOR_11="#bbee78" # EXEC
export COLOR_12="#f5b378" #
export COLOR_13="#81b3ec" # FOLDER
export COLOR_14="#bb79ec" #
export COLOR_15="#81eeb2" #
export COLOR_16="#f5eeec" #
export BACKGROUND_COLOR="#012849" # Background Color
export FOREGROUND_COLOR="#a9bed8" # Text
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor
export PROFILE_NAME="Bim"
# =============================================================== #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#573d26" # HOST
export COLOR_02="#be2d26" # SYNTAX_STRING
export COLOR_03="#6ba18a" # COMMAND
export COLOR_04="#e99d2a" # COMMAND_COLOR2
export COLOR_05="#5a86ad" # PATH
export COLOR_06="#ac80a6" # SYNTAX_VAR
export COLOR_07="#74a6ad" # PROMP
export COLOR_08="#e0dbb7" #
export COLOR_09="#9b6c4a" #
export COLOR_10="#e84627" # COMMAND_ERROR
export COLOR_11="#95d8ba" # EXEC
export COLOR_12="#d0d150" #
export COLOR_13="#b8d3ed" # FOLDER
export COLOR_14="#d19ecb" #
export COLOR_15="#93cfd7" #
export COLOR_16="#fff9d5" #
export BACKGROUND_COLOR="#2a1f1d" # Background Color
export FOREGROUND_COLOR="#e0dbb7" # Text
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor
export PROFILE_NAME="Birds Of Paradise"
# =============================================================== #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#000000" # HOST
export COLOR_02="#b87a7a" # SYNTAX_STRING
export COLOR_03="#7ab87a" # COMMAND
export COLOR_04="#b8b87a" # COMMAND_COLOR2
export COLOR_05="#7a7ab8" # PATH
export COLOR_06="#b87ab8" # SYNTAX_VAR
export COLOR_07="#7ab8b8" # PROMP
export COLOR_08="#d9d9d9" #
export COLOR_09="#262626" #
export COLOR_10="#dbbdbd" # COMMAND_ERROR
export COLOR_11="#bddbbd" # EXEC
export COLOR_12="#dbdbbd" #
export COLOR_13="#bdbddb" # FOLDER
export COLOR_14="#dbbddb" #
export COLOR_15="#bddbdb" #
export COLOR_16="#ffffff" #
export BACKGROUND_COLOR="#0d1926" # Background Color
export FOREGROUND_COLOR="#d9e6f2" # Text
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor
export PROFILE_NAME="Blazer"
# =============================================================== #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#d5d6dd" # Black
export COLOR_02="#d52753" # Red
export COLOR_03="#23974a" # Green
export COLOR_04="#df631c" # Yellow
export COLOR_05="#275fe4" # Blue
export COLOR_06="#823ff1" # Magenta
export COLOR_07="#27618d" # Cyan
export COLOR_08="#000000" # Light gray
export COLOR_09="#e4e5ed" # Dark gray
export COLOR_10="#ff6480" # Light Red
export COLOR_11="#3cbc66" # Light Green
export COLOR_12="#c5a332" # Light Yellow
export COLOR_13="#0099e1" # Light Blue
export COLOR_14="#ce33c0" # Light Magenta
export COLOR_15="#6d93bb" # Light Cyan
export COLOR_16="#26272d" # White
export BACKGROUND_COLOR="#f9f9f9" # Background Color
export FOREGROUND_COLOR="#383a42" # Foreground Color (text)
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor color
export PROFILE_NAME="Bluloco Light"
# =============================================================== #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#e4e5f1" # Black
export COLOR_02="#d52753" # Red
export COLOR_03="#23974a" # Green
export COLOR_04="#df631c" # Yellow
export COLOR_05="#275fe4" # Blue
export COLOR_06="#823ff1" # Magenta
export COLOR_07="#27618d" # Cyan
export COLOR_08="#000000" # Light gray
export COLOR_09="#5794de" # Dark gray
export COLOR_10="#ff6480" # Light Red
export COLOR_11="#3cbc66" # Light Green
export COLOR_12="#c5a332" # Light Yellow
export COLOR_13="#0099e1" # Light Blue
export COLOR_14="#ce33c0" # Light Magenta
export COLOR_15="#6d93bb" # Light Cyan
export COLOR_16="#26272d" # White
export BACKGROUND_COLOR="#f9f9f9" # Background Color
export FOREGROUND_COLOR="#383a42" # Foreground Color (text)
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor color
export PROFILE_NAME="Bluloco Zsh Light"
# =============================================================== #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#4f4f4f" # HOST
export COLOR_02="#ff6c60" # SYNTAX_STRING
export COLOR_03="#a8ff60" # COMMAND
export COLOR_04="#ffffb6" # COMMAND_COLOR2
export COLOR_05="#96cbfe" # PATH
export COLOR_06="#ff73fd" # SYNTAX_VAR
export COLOR_07="#c6c5fe" # PROMP
export COLOR_08="#eeeeee" #
export COLOR_09="#7c7c7c" #
export COLOR_10="#ffb6b0" # COMMAND_ERROR
export COLOR_11="#ceffac" # EXEC
export COLOR_12="#ffffcc" #
export COLOR_13="#b5dcff" # FOLDER
export COLOR_14="#ff9cfe" #
export COLOR_15="#dfdffe" #
export COLOR_16="#ffffff" #
export BACKGROUND_COLOR="#0000a4" # Background Color
export FOREGROUND_COLOR="#ffff4e" # Text
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor
export PROFILE_NAME="Borland"
# =============================================================== #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#000000" # HOST
export COLOR_02="#da4939" # SYNTAX_STRING
export COLOR_03="#519f50" # COMMAND
export COLOR_04="#ffd24a" # COMMAND_COLOR2
export COLOR_05="#6d9cbe" # PATH
export COLOR_06="#d0d0ff" # SYNTAX_VAR
export COLOR_07="#6e9cbe" # PROMP
export COLOR_08="#ffffff" #
export COLOR_09="#323232" #
export COLOR_10="#ff7b6b" # COMMAND_ERROR
export COLOR_11="#83d182" # EXEC
export COLOR_12="#ffff7c" #
export COLOR_13="#9fcef0" # FOLDER
export COLOR_14="#ffffff" #
export COLOR_15="#a0cef0" #
export COLOR_16="#ffffff" #
export BACKGROUND_COLOR="#2b2b2b" # Background Color
export FOREGROUND_COLOR="#e6e1dc" # Text
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor
export PROFILE_NAME="Broadcast"
# =============================================================== #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#1f1f1f" # HOST
export COLOR_02="#f81118" # SYNTAX_STRING
export COLOR_03="#2dc55e" # COMMAND
export COLOR_04="#ecba0f" # COMMAND_COLOR2
export COLOR_05="#2a84d2" # PATH
export COLOR_06="#4e5ab7" # SYNTAX_VAR
export COLOR_07="#1081d6" # PROMP
export COLOR_08="#d6dbe5" #
export COLOR_09="#d6dbe5" #
export COLOR_10="#de352e" # COMMAND_ERROR
export COLOR_11="#1dd361" # EXEC
export COLOR_12="#f3bd09" #
export COLOR_13="#1081d6" # FOLDER
export COLOR_14="#5350b9" #
export COLOR_15="#0f7ddb" #
export COLOR_16="#ffffff" #
export BACKGROUND_COLOR="#131313" # Background Color
export FOREGROUND_COLOR="#d6dbe5" # Text
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor
export PROFILE_NAME="Brogrammer"
# =============================================================== #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#090300" # HOST
export COLOR_02="#883932" # SYNTAX_STRING
export COLOR_03="#55a049" # COMMAND
export COLOR_04="#bfce72" # COMMAND_COLOR2
export COLOR_05="#40318d" # PATH
export COLOR_06="#8b3f96" # SYNTAX_VAR
export COLOR_07="#67b6bd" # PROMP
export COLOR_08="#ffffff" #
export COLOR_09="#000000" #
export COLOR_10="#883932" # COMMAND_ERROR
export COLOR_11="#55a049" # EXEC
export COLOR_12="#bfce72" #
export COLOR_13="#40318d" # FOLDER
export COLOR_14="#8b3f96" #
export COLOR_15="#67b6bd" #
export COLOR_16="#f7f7f7" #
export BACKGROUND_COLOR="#40318d" # Background Color
export FOREGROUND_COLOR="#7869c4" # Text
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor
export PROFILE_NAME="C64"
# =============================================================== #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#000000" # HOST
export COLOR_02="#ca274d" # SYNTAX_STRING
export COLOR_03="#4dca27" # COMMAND
export COLOR_04="#caa427" # COMMAND_COLOR2
export COLOR_05="#274dca" # PATH
export COLOR_06="#a427ca" # SYNTAX_VAR
export COLOR_07="#27caa4" # PROMP
export COLOR_08="#808080" #
export COLOR_09="#808080" #
export COLOR_10="#e98da3" # COMMAND_ERROR
export COLOR_11="#a3e98d" # EXEC
export COLOR_12="#e9d48d" #
export COLOR_13="#8da3e9" # FOLDER
export COLOR_14="#d48de9" #
export COLOR_15="#8de9d4" #
export COLOR_16="#ffffff" #
export BACKGROUND_COLOR="#09111a" # Background Color
export FOREGROUND_COLOR="#d9e6f2" # Text
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor
export PROFILE_NAME="Cai"
# =============================================================== #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#646464" # HOST
export COLOR_02="#F58E8E" # SYNTAX_STRING
export COLOR_03="#A9D3AB" # COMMAND
export COLOR_04="#FED37E" # COMMAND_COLOR2
export COLOR_05="#7AABD4" # PATH
export COLOR_06="#D6ADD5" # SYNTAX_VAR
export COLOR_07="#79D4D5" # PROMP
export COLOR_08="#D4D4D4" #
export COLOR_09="#646464" #
export COLOR_10="#F58E8E" # COMMAND_ERROR
export COLOR_11="#A9D3AB" # EXEC
export COLOR_12="#FED37E" #
export COLOR_13="#7AABD4" # FOLDER
export COLOR_14="#D6ADD5" #
export COLOR_15="#79D4D5" #
export COLOR_16="#D4D4D4" #
export BACKGROUND_COLOR="#2D2D2D" # Background Color
export FOREGROUND_COLOR="#D4D4D4" # Text
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor
export PROFILE_NAME="Chalk"
# =============================================================== #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#000000" # HOST
export COLOR_02="#c37372" # SYNTAX_STRING
export COLOR_03="#72c373" # COMMAND
export COLOR_04="#c2c372" # COMMAND_COLOR2
export COLOR_05="#7372c3" # PATH
export COLOR_06="#c372c2" # SYNTAX_VAR
export COLOR_07="#72c2c3" # PROMP
export COLOR_08="#d9d9d9" #
export COLOR_09="#323232" #
export COLOR_10="#dbaaaa" # COMMAND_ERROR
export COLOR_11="#aadbaa" # EXEC
export COLOR_12="#dadbaa" #
export COLOR_13="#aaaadb" # FOLDER
export COLOR_14="#dbaada" #
export COLOR_15="#aadadb" #
export COLOR_16="#ffffff" #
export BACKGROUND_COLOR="#29262f" # Background Color
export FOREGROUND_COLOR="#d9e6f2" # Text
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor
export PROFILE_NAME="Chalkboard"
# =============================================================== #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#181818" # HOST
export COLOR_02="#810009" # SYNTAX_STRING
export COLOR_03="#48513b" # COMMAND
export COLOR_04="#cc8b3f" # COMMAND_COLOR2
export COLOR_05="#576d8c" # PATH
export COLOR_06="#724d7c" # SYNTAX_VAR
export COLOR_07="#5c4f4b" # PROMP
export COLOR_08="#aea47f" #
export COLOR_09="#555555" #
export COLOR_10="#ac3835" # COMMAND_ERROR
export COLOR_11="#a6a75d" # EXEC
export COLOR_12="#dcdf7c" #
export COLOR_13="#3097c6" # FOLDER
export COLOR_14="#d33061" #
export COLOR_15="#f3dbb2" #
export COLOR_16="#f4f4f4" #
export BACKGROUND_COLOR="#191c27" # Background Color
export FOREGROUND_COLOR="#aea47a" # Text
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor
export PROFILE_NAME="Ciapre"
# =============================================================== #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#2E3436" # Black
export COLOR_02="#CC0000" # Red
export COLOR_03="#4E9A06" # Green
export COLOR_04="#C4A000" # Yellow
export COLOR_05="#3465A4" # Blue
export COLOR_06="#75507B" # Cyan
export COLOR_07="#06989A" # Magenta
export COLOR_08="#D3D7CF" # Light gray
export COLOR_09="#555753" # Dark gray
export COLOR_10="#EF2929" # Light Red
export COLOR_11="#8AE234" # Light Green
export COLOR_12="#FCE94F" # Light Yellow
export COLOR_13="#729FCF" # Light Blue
export COLOR_14="#AD7FA8" # Light Cyan
export COLOR_15="#34E2E2" # Light Magenta
export COLOR_16="#EEEEEC" # White
export BACKGROUND_COLOR="#300a24" # Background Color
export FOREGROUND_COLOR="#ffffff" # Foreground Color (text)
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor color
export PROFILE_NAME="Clone of Ubuntu"
# =============================================
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#000000" # HOST
export COLOR_02="#f8282a" # SYNTAX_STRING
export COLOR_03="#328a5d" # COMMAND
export COLOR_04="#fa701d" # COMMAND_COLOR2
export COLOR_05="#135cd0" # PATH
export COLOR_06="#9f00bd" # SYNTAX_VAR
export COLOR_07="#33c3c1" # PROMP
export COLOR_08="#b3b3b3" #
export COLOR_09="#555753" #
export COLOR_10="#fb0416" # COMMAND_ERROR
export COLOR_11="#2cc631" # EXEC
export COLOR_12="#fdd727" #
export COLOR_13="#1670ff" # FOLDER
export COLOR_14="#e900b0" #
export COLOR_15="#3ad5ce" #
export COLOR_16="#eeeeec" #
export BACKGROUND_COLOR="#ffffff" # Background Color
export FOREGROUND_COLOR="#262626" # Text
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor
export PROFILE_NAME="CLRS"
# =============================================================== #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#142631" # HOST
export COLOR_02="#ff2320" # SYNTAX_STRING
export COLOR_03="#3ba5ff" # COMMAND
export COLOR_04="#e9e75c" # COMMAND_COLOR2
export COLOR_05="#8ff586" # PATH
export COLOR_06="#781aa0" # SYNTAX_VAR
export COLOR_07="#8ff586" # PROMP
export COLOR_08="#ba46b2" #
export COLOR_09="#fff688" #
export COLOR_10="#d4312e" # COMMAND_ERROR
export COLOR_11="#8ff586" # EXEC
export COLOR_12="#e9f06d" #
export COLOR_13="#3c7dd2" # FOLDER
export COLOR_14="#8230a7" #
export COLOR_15="#6cbc67" #
export COLOR_16="#8ff586" #
export BACKGROUND_COLOR="#142838" # Background Color
export FOREGROUND_COLOR="#8ff586" # Text
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor
export PROFILE_NAME="Cobalt Neon"
# =============================================================== #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#000000" # HOST
export COLOR_02="#ff0000" # SYNTAX_STRING
export COLOR_03="#38de21" # COMMAND
export COLOR_04="#ffe50a" # COMMAND_COLOR2
export COLOR_05="#1460d2" # PATH
export COLOR_06="#ff005d" # SYNTAX_VAR
export COLOR_07="#00bbbb" # PROMP
export COLOR_08="#bbbbbb" #
export COLOR_09="#555555" #
export COLOR_10="#f40e17" # COMMAND_ERROR
export COLOR_11="#3bd01d" # EXEC
export COLOR_12="#edc809" #
export COLOR_13="#5555ff" # FOLDER
export COLOR_14="#ff55ff" #
export COLOR_15="#6ae3fa" #
export COLOR_16="#ffffff" #
export BACKGROUND_COLOR="#132738" # Background Color
export FOREGROUND_COLOR="#ffffff" # Text
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor
export PROFILE_NAME="Cobalt 2"
# =============================================================== #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,53 @@
#!/usr/bin/env bash
# colorcli theme from https://github.com/jonasjacek/colorcli
# ====================CONFIG THIS =============================== #
export COLOR_01="#000000" # HOST (black - system)
export COLOR_02="#D70000" # SYNTAX_STRING (red3)
export COLOR_03="#5FAF00" # COMMAND (Chartreuse3)
export COLOR_04="#5FAF00" # COMMAND_COLOR2 (Chartreuse3)
export COLOR_05="#005F87" # PATH (deepskyblue4)
export COLOR_06="#D70000" # SYNTAX_VAR (red3)
export COLOR_07="#5F5F5F" # PROMPT (gray37)
export COLOR_08="#E4E4E4" # (gray89)
export COLOR_09="#5F5F5F" # Dark gray (gray37)
export COLOR_10="#D70000" # COMMAND_ERROR (red3)
export COLOR_11="#5F5F5F" # EXEC (gray37)
export COLOR_12="#FFFF00" # Light Yellow (yellow1)
export COLOR_13="#0087AF" # Light Blue (deepskyblue3)
export COLOR_14="#0087AF" # Light Magenta (deepskyblue3)
export COLOR_15="#0087AF" # Light Cyan (deepskyblue3)
export COLOR_16="#FFFFFF" # White (white - system)
export BACKGROUND_COLOR="#FFFFFF" # Background Color
export FOREGROUND_COLOR="#005F87" # Foreground Color (text - deepskyblue4)
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor color
export HIGHLIGHT_FG_COLOR="#0087AF" # Text color within highlight (deepskyblue3)
export HIGHLIGHT_BG_COLOR="#BCBCBC" # Highlight color (gray74)
export USE_SYS_TRANSPARENCY="false"
export PROFILE_NAME="Colorcli"
# =============================================================== #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if command -v curl >/dev/null 2>&1; then
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
elif command -v wget >/dev/null 2>&1; then
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#2b1b1d" # HOST
export COLOR_02="#91002b" # SYNTAX_STRING
export COLOR_03="#579524" # COMMAND
export COLOR_04="#ab311b" # COMMAND_COLOR2
export COLOR_05="#8c87b0" # PATH
export COLOR_06="#692f50" # SYNTAX_VAR
export COLOR_07="#e8a866" # PROMP
export COLOR_08="#68525a" #
export COLOR_09="#3d2b2e" #
export COLOR_10="#c5255d" # COMMAND_ERROR
export COLOR_11="#8dff57" # EXEC
export COLOR_12="#c8381d" #
export COLOR_13="#cfc9ff" # FOLDER
export COLOR_14="#fc6cba" #
export COLOR_15="#ffceaf" #
export COLOR_16="#b0949d" #
export BACKGROUND_COLOR="#150707" # Background Color
export FOREGROUND_COLOR="#68525a" # Text
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor
export PROFILE_NAME="Crayon Pony Fish"
# =============================================================== #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#000000" # HOST
export COLOR_02="#ff5555" # SYNTAX_STRING
export COLOR_03="#55ff55" # COMMAND
export COLOR_04="#ffff55" # COMMAND_COLOR2
export COLOR_05="#5555ff" # PATH
export COLOR_06="#ff55ff" # SYNTAX_VAR
export COLOR_07="#55ffff" # PROMP
export COLOR_08="#bbbbbb" #
export COLOR_09="#555555" #
export COLOR_10="#ff5555" # COMMAND_ERROR
export COLOR_11="#55ff55" # EXEC
export COLOR_12="#ffff55" #
export COLOR_13="#5555ff" # FOLDER
export COLOR_14="#ff55ff" #
export COLOR_15="#55ffff" #
export COLOR_16="#ffffff" #
export BACKGROUND_COLOR="#000000" # Background Color
export FOREGROUND_COLOR="#ffffff" # Text
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor
export PROFILE_NAME="Dark Pastel"
# =============================================================== #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#000000" # HOST
export COLOR_02="#e8341c" # SYNTAX_STRING
export COLOR_03="#68c256" # COMMAND
export COLOR_04="#f2d42c" # COMMAND_COLOR2
export COLOR_05="#1c98e8" # PATH
export COLOR_06="#8e69c9" # SYNTAX_VAR
export COLOR_07="#1c98e8" # PROMP
export COLOR_08="#bababa" #
export COLOR_09="#000000" #
export COLOR_10="#e05a4f" # COMMAND_ERROR
export COLOR_11="#77b869" # EXEC
export COLOR_12="#efd64b" #
export COLOR_13="#387cd3" # FOLDER
export COLOR_14="#957bbe" #
export COLOR_15="#3d97e2" #
export COLOR_16="#bababa" #
export BACKGROUND_COLOR="#222324" # Background Color
export FOREGROUND_COLOR="#bababa" # Text
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor
export PROFILE_NAME="Darkside"
# =============================================================== #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#333333" # Black
export COLOR_02="#ff5555" # Red
export COLOR_03="#5fd38d" # Green
export COLOR_04="#ff9955" # Yellow
export COLOR_05="#3771c8" # Blue
export COLOR_06="#bc5fd3" # Magenta
export COLOR_07="#5fd3bc" # Cyan
export COLOR_08="#999999" # Light gray
export COLOR_09="#666666" # Dark gray
export COLOR_10="#ff8080" # Light Red
export COLOR_11="#87deaa" # Light Green
export COLOR_12="#ffb380" # Light Yellow
export COLOR_13="#5f8dd3" # Light Blue
export COLOR_14="#cd87de" # Light Magenta
export COLOR_15="#87decd" # Light Cyan
export COLOR_16="#cccccc" # White
export BACKGROUND_COLOR="$COLOR_01" # Background Color
export FOREGROUND_COLOR="$COLOR_16" # Foreground Color (text)
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor color
export PROFILE_NAME="DeHydration"
# =============================================================== #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#4d4d4d" # HOST
export COLOR_02="#ff2b2b" # SYNTAX_STRING
export COLOR_03="#98fb98" # COMMAND
export COLOR_04="#f0e68c" # COMMAND_COLOR2
export COLOR_05="#cd853f" # PATH
export COLOR_06="#ffdead" # SYNTAX_VAR
export COLOR_07="#ffa0a0" # PROMP
export COLOR_08="#f5deb3" #
export COLOR_09="#555555" #
export COLOR_10="#ff5555" # COMMAND_ERROR
export COLOR_11="#55ff55" # EXEC
export COLOR_12="#ffff55" #
export COLOR_13="#87ceff" # FOLDER
export COLOR_14="#ff55ff" #
export COLOR_15="#ffd700" #
export COLOR_16="#ffffff" #
export BACKGROUND_COLOR="#333333" # Background Color
export FOREGROUND_COLOR="#ffffff" # Text
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor
export PROFILE_NAME="Desert"
# =============================================================== #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#3a3d43" # HOST
export COLOR_02="#be3f48" # SYNTAX_STRING
export COLOR_03="#879a3b" # COMMAND
export COLOR_04="#c5a635" # COMMAND_COLOR2
export COLOR_05="#4f76a1" # PATH
export COLOR_06="#855c8d" # SYNTAX_VAR
export COLOR_07="#578fa4" # PROMP
export COLOR_08="#b9bcba" #
export COLOR_09="#888987" #
export COLOR_10="#fb001f" # COMMAND_ERROR
export COLOR_11="#0f722f" # EXEC
export COLOR_12="#c47033" #
export COLOR_13="#186de3" # FOLDER
export COLOR_14="#fb0067" #
export COLOR_15="#2e706d" #
export COLOR_16="#fdffb9" #
export BACKGROUND_COLOR="#1f1f1f" # Background Color
export FOREGROUND_COLOR="#b9bcba" # Text
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor
export PROFILE_NAME="Dimmed Monokai"
# =============================================================== #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#000000" # HOST
export COLOR_02="#dc322f" # SYNTAX_STRING
export COLOR_03="#56db3a" # COMMAND
export COLOR_04="#ff8400" # COMMAND_COLOR2
export COLOR_05="#0084d4" # PATH
export COLOR_06="#b729d9" # SYNTAX_VAR
export COLOR_07="#ccccff" # PROMP
export COLOR_08="#ffffff" #
export COLOR_09="#d6dbe5" #
export COLOR_10="#dc322f" # COMMAND_ERROR
export COLOR_11="#56db3a" # EXEC
export COLOR_12="#ff8400" #
export COLOR_13="#0084d4" # FOLDER
export COLOR_14="#b729d9" #
export COLOR_15="#ccccff" #
export COLOR_16="#ffffff" #
export BACKGROUND_COLOR="#000000" # Background Color
export FOREGROUND_COLOR="#ffffff" # Text
export CURSOR_COLOR="#dc322f" # Cursor
export PROFILE_NAME="Dissonance"
# =============================================================== #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#44475a" # HOST
export COLOR_02="#ff5555" # SYNTAX_STRING
export COLOR_03="#50fa7b" # COMMAND
export COLOR_04="#ffb86c" # COMMAND_COLOR2
export COLOR_05="#8be9fd" # PATH
export COLOR_06="#bd93f9" # SYNTAX_VAR
export COLOR_07="#ff79c6" # PROMP
export COLOR_08="#94A3A5" #
export COLOR_09="#000000" #
export COLOR_10="#ff5555" # COMMAND_ERROR
export COLOR_11="#50fa7b" # EXEC
export COLOR_12="#ffb86c" #
export COLOR_13="#8be9fd" # FOLDER
export COLOR_14="#bd93f9" #
export COLOR_15="#ff79c6" #
export COLOR_16="#ffffff" #
export BACKGROUND_COLOR="#282a36" # Background Color
export FOREGROUND_COLOR="#94A3A5" # Text
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor
export PROFILE_NAME="Dracula"
# =============================================================== #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#121418" # HOST
export COLOR_02="#c94234" # SYNTAX_STRING
export COLOR_03="#85c54c" # COMMAND
export COLOR_04="#f5ae2e" # COMMAND_COLOR2
export COLOR_05="#1398b9" # PATH
export COLOR_06="#d0633d" # SYNTAX_VAR
export COLOR_07="#509552" # PROMP
export COLOR_08="#e5c6aa" #
export COLOR_09="#675f54" #
export COLOR_10="#ff645a" # COMMAND_ERROR
export COLOR_11="#98e036" # EXEC
export COLOR_12="#e0d561" #
export COLOR_13="#5fdaff" # FOLDER
export COLOR_14="#ff9269" #
export COLOR_15="#84f088" #
export COLOR_16="#f6f7ec" #
export BACKGROUND_COLOR="#292520" # Background Color
export FOREGROUND_COLOR="#e5c7a9" # Text
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor
export PROFILE_NAME="Earthsong"
# =============================================================== #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#3c3c30" # HOST
export COLOR_02="#98290f" # SYNTAX_STRING
export COLOR_03="#479a43" # COMMAND
export COLOR_04="#7f7111" # COMMAND_COLOR2
export COLOR_05="#497f7d" # PATH
export COLOR_06="#7f4e2f" # SYNTAX_VAR
export COLOR_07="#387f58" # PROMP
export COLOR_08="#807974" #
export COLOR_09="#555445" #
export COLOR_10="#e0502a" # COMMAND_ERROR
export COLOR_11="#61e070" # EXEC
export COLOR_12="#d69927" #
export COLOR_13="#79d9d9" # FOLDER
export COLOR_14="#cd7c54" #
export COLOR_15="#59d599" #
export COLOR_16="#fff1e9" #
export BACKGROUND_COLOR="#22211d" # Background Color
export FOREGROUND_COLOR="#807a74" # Text
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor
export PROFILE_NAME="Elemental"
# =============================================================== #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#303030" # HOST
export COLOR_02="#e1321a" # SYNTAX_STRING
export COLOR_03="#6ab017" # COMMAND
export COLOR_04="#ffc005" # COMMAND_COLOR2
export COLOR_05="#004f9e" # PATH
export COLOR_06="#ec0048" # SYNTAX_VAR
export COLOR_07="#2aa7e7" # PROMP
export COLOR_08="#f2f2f2" #
export COLOR_09="#5d5d5d" #
export COLOR_10="#ff361e" # COMMAND_ERROR
export COLOR_11="#7bc91f" # EXEC
export COLOR_12="#ffd00a" #
export COLOR_13="#0071ff" # FOLDER
export COLOR_14="#ff1d62" #
export COLOR_15="#4bb8fd" #
export COLOR_16="#a020f0" #
export BACKGROUND_COLOR="#101010" # Background Color
export FOREGROUND_COLOR="#f2f2f2" # Text
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor
export PROFILE_NAME="Elementary"
# =============================================================== #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#303030" # HOST
export COLOR_02="#e1321a" # SYNTAX_STRING
export COLOR_03="#6ab017" # COMMAND
export COLOR_04="#ffc005" # COMMAND_COLOR2
export COLOR_05="#729FCF" # PATH
export COLOR_06="#ec0048" # SYNTAX_VAR
export COLOR_07="#f2f2f2" # PROMP
export COLOR_08="#2aa7e7" #
export COLOR_09="#5d5d5d" #
export COLOR_10="#ff361e" # COMMAND_ERROR
export COLOR_11="#7bc91f" # EXEC
export COLOR_12="#ffd00a" #
export COLOR_13="#0071ff" # FOLDER
export COLOR_14="#ff1d62" #
export COLOR_15="#4bb8fd" #
export COLOR_16="#a020f0" #
export BACKGROUND_COLOR="#4A453E" # Background Color
export FOREGROUND_COLOR="#f2f2f2" # Text
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor
export PROFILE_NAME="Elic"
# =============================================================== #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#303030" # HOST
export COLOR_02="#e1321a" # SYNTAX_STRING
export COLOR_03="#6ab017" # COMMAND
export COLOR_04="#ffc005" # COMMAND_COLOR2
export COLOR_05="#729FCF" # PATH
export COLOR_06="#ec0048" # SYNTAX_VAR
export COLOR_07="#2aa7e7" # PROMP
export COLOR_08="#f2f2f2" #
export COLOR_09="#5d5d5d" #
export COLOR_10="#ff361e" # COMMAND_ERROR
export COLOR_11="#7bc91f" # EXEC
export COLOR_12="#ffd00a" #
export COLOR_13="#0071ff" # FOLDER
export COLOR_14="#ff1d62" #
export COLOR_15="#4bb8fd" #
export COLOR_16="#a020f0" #
export BACKGROUND_COLOR="#041A3B" # Background Color
export FOREGROUND_COLOR="#f2f2f2" # Text
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor
export PROFILE_NAME="Elio"
# =============================================================== #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#000000" # HOST
export COLOR_02="#cc0000" # SYNTAX_STRING
export COLOR_03="#1a921c" # COMMAND
export COLOR_04="#f0e53a" # COMMAND_COLOR2
export COLOR_05="#0066ff" # PATH
export COLOR_06="#c5656b" # SYNTAX_VAR
export COLOR_07="#06989a" # PROMP
export COLOR_08="#d3d7cf" #
export COLOR_09="#555753" #
export COLOR_10="#ef2929" # COMMAND_ERROR
export COLOR_11="#9aff87" # EXEC
export COLOR_12="#fffb5c" #
export COLOR_13="#43a8ed" # FOLDER
export COLOR_14="#ff818a" #
export COLOR_15="#34e2e2" #
export COLOR_16="#eeeeec" #
export BACKGROUND_COLOR="#2a211c" # Background Color
export FOREGROUND_COLOR="#b8a898" # Text
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor
export PROFILE_NAME="Espresso Libre"
# =============================================================== #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#353535" # HOST
export COLOR_02="#d25252" # SYNTAX_STRING
export COLOR_03="#a5c261" # COMMAND
export COLOR_04="#ffc66d" # COMMAND_COLOR2
export COLOR_05="#6c99bb" # PATH
export COLOR_06="#d197d9" # SYNTAX_VAR
export COLOR_07="#bed6ff" # PROMP
export COLOR_08="#eeeeec" #
export COLOR_09="#535353" #
export COLOR_10="#f00c0c" # COMMAND_ERROR
export COLOR_11="#c2e075" # EXEC
export COLOR_12="#e1e48b" #
export COLOR_13="#8ab7d9" # FOLDER
export COLOR_14="#efb5f7" #
export COLOR_15="#dcf4ff" #
export COLOR_16="#ffffff" #
export BACKGROUND_COLOR="#323232" # Background Color
export FOREGROUND_COLOR="#ffffff" # Text
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor
export PROFILE_NAME="Espresso"
# =============================================================== #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#42395D"
export COLOR_02="#A8757B"
export COLOR_03="#FF857F"
export COLOR_04="#E6C000"
export COLOR_05="#AE81FF"
export COLOR_06="#716799"
export COLOR_07="#C2FFDF"
export COLOR_08="#F8F8F2"
export COLOR_09="#75507B"
export COLOR_10="#FFB8D1"
export COLOR_11="#F1568E"
export COLOR_12="#D5A425"
export COLOR_13="#C5A3FF"
export COLOR_14="#8077A8"
export COLOR_15="#C2FFFF"
export COLOR_16="#F8F8F0"
export BACKGROUND_COLOR="#5A5475"
export FOREGROUND_COLOR="#C2FFDF"
export CURSOR_COLOR="#FFB8D1"
export PROFILE_NAME="Fairy Floss"
# =============================================================== #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#42395D"
export COLOR_02="#A8757B"
export COLOR_03="#FF857F"
export COLOR_04="#E6C000"
export COLOR_05="#AE81FF"
export COLOR_06="#716799"
export COLOR_07="#C2FFDF"
export COLOR_08="#F8F8F2"
export COLOR_09="#75507B"
export COLOR_10="#FFB8D1"
export COLOR_11="#F1568E"
export COLOR_12="#D5A425"
export COLOR_13="#C5A3FF"
export COLOR_14="#8077A8"
export COLOR_15="#C2FFFF"
export COLOR_16="#F8F8F0"
export BACKGROUND_COLOR="#42395D"
export FOREGROUND_COLOR="#C2FFDF"
export CURSOR_COLOR="#FFB8D1"
export PROFILE_NAME="Fairy Floss Dark"
# =============================================================== #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#03073c" # HOST
export COLOR_02="#c6004a" # SYNTAX_STRING
export COLOR_03="#acf157" # COMMAND
export COLOR_04="#fecd5e" # COMMAND_COLOR2
export COLOR_05="#525fb8" # PATH
export COLOR_06="#986f82" # SYNTAX_VAR
export COLOR_07="#968763" # PROMP
export COLOR_08="#ecf0fc" #
export COLOR_09="#6c5b30" #
export COLOR_10="#da4b8a" # COMMAND_ERROR
export COLOR_11="#dbffa9" # EXEC
export COLOR_12="#fee6a9" #
export COLOR_13="#b2befa" # FOLDER
export COLOR_14="#fda5cd" #
export COLOR_15="#a5bd86" #
export COLOR_16="#f6ffec" #
export BACKGROUND_COLOR="#232537" # Background Color
export FOREGROUND_COLOR="#ecf0fe" # Text
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor
export PROFILE_NAME="Fishtank"
# =============================================================== #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#1F2229" # Black
export COLOR_02="#D41919" # Red
export COLOR_03="#5EBDAB" # Green
export COLOR_04="#FEA44C" # Yellow
export COLOR_05="#367bf0" # Blue
export COLOR_06="#BF2E5D" # Magenta
export COLOR_07="#49AEE6" # Cyan
export COLOR_08="#E6E6E6" # Light gray
export COLOR_09="#8C42AB" # Dark gray
export COLOR_10="#EC0101" # Light Red
export COLOR_11="#47D4B9" # Light Green
export COLOR_12="#FF8A18" # Light Yellow
export COLOR_13="#277FFF" # Light Blue
export COLOR_14="#D71655" # Light Magenta
export COLOR_15="#05A1F7" # Light Cyan
export COLOR_16="#FFFFFF" # White
export BACKGROUND_COLOR="#272a34" # Background Color
export FOREGROUND_COLOR="#FFFFFF" # Foreground Color (text)
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor color
export PROFILE_NAME="Flat Remix"
# =============================================================== #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#2c3e50" # HOST
export COLOR_02="#c0392b" # SYNTAX_STRING
export COLOR_03="#27ae60" # COMMAND
export COLOR_04="#f39c12" # COMMAND_COLOR2
export COLOR_05="#2980b9" # PATH
export COLOR_06="#8e44ad" # SYNTAX_VAR
export COLOR_07="#16a085" # PROMP
export COLOR_08="#bdc3c7" #
export COLOR_09="#34495e" #
export COLOR_10="#e74c3c" # COMMAND_ERROR
export COLOR_11="#2ecc71" # EXEC
export COLOR_12="#f1c40f" #
export COLOR_13="#3498db" # FOLDER
export COLOR_14="#9b59b6" #
export COLOR_15="#2AA198" #
export COLOR_16="#ecf0f1" #
export BACKGROUND_COLOR="#1F2D3A" # Background Color
export FOREGROUND_COLOR="#1abc9c" # Text
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor
export PROFILE_NAME="Flat"
# =============================================================== #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#1d1d19" # HOST
export COLOR_02="#f18339" # SYNTAX_STRING
export COLOR_03="#9fd364" # COMMAND
export COLOR_04="#f4ef6d" # COMMAND_COLOR2
export COLOR_05="#5096be" # PATH
export COLOR_06="#695abc" # SYNTAX_VAR
export COLOR_07="#d63865" # PROMP
export COLOR_08="#ffffff" #
export COLOR_09="#1d1d19" #
export COLOR_10="#d22a24" # COMMAND_ERROR
export COLOR_11="#a7d42c" # EXEC
export COLOR_12="#ff8949" #
export COLOR_13="#61b9d0" # FOLDER
export COLOR_14="#695abc" #
export COLOR_15="#d63865" #
export COLOR_16="#ffffff" #
export BACKGROUND_COLOR="#1d1f21" # Background Color
export FOREGROUND_COLOR="#b8dbef" # Text
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor
export PROFILE_NAME="Flatland"
# =============================================================== #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,56 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#2A2A2E" # HOST | Black russian | list-text-color | maybe
export COLOR_02="#B98EFF" # SYNTAX_STRING | Medium purple | html-attribute-value
export COLOR_03="#FF7DE9" # COMMAND | Orchid | html-attribute-name
export COLOR_04="#729FCF" # COMMAND_COLOR2 | Jordy blue | html-tag
export COLOR_05="#66A05B" # PATH | De york | html-comment and doctype
export COLOR_06="#75507B" # SYNTAX_VAR | Hot purple (import) list-bg-color | maybe
export COLOR_07="#ACACAE" # PROMP | Dark grey | html-tag-angle-brackets
export COLOR_08="#FFFFFF" # White | active list-bg (probably)
export COLOR_09="#A40000" # UNKNOWN | Tomato
export COLOR_10="#BF4040" # COMMAND_ERROR | Valencia (grep highlight)
export COLOR_11="#66A05B" # EXEC | same as PATH (De york) (maybe)
export COLOR_12="#FFB86C" # UNKNOWN | Rajah
export COLOR_13="#729FCF" # FOLDER | Jordy blue | active:html-brackets/parenthesis
export COLOR_14="#8F5902" # Mandalay | special sort of-files (probably)
export COLOR_15="#C4A000" # (maybe) | Lemon
export COLOR_16="#5C3566" # UNKNOWN | Honey flower
export BACKGROUND_COLOR="#2A2A2E" # Background Color | Black russian | true
export FOREGROUND_COLOR="#D7D7DB" # Text | Fuscous grey | html-tag-content
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor
export PROFILE_NAME="Foxnightly"
# =============================================
# Mainly inspired by firefox developer/nightly (58) inspector theme
# Font: Hack or Liberation Mono Regular | 9 (font-size)
# Allow bold text
# Cursor shape: Block or Underline (if Hack — Block else Underline)
# Show menubar by default in new terminals — turn off (unchecked)
# Bold color: Same as text color (as you wish — checked/unchecked)
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ==================== CONFIG THIS ========================================= #
export COLOR_01="#073642" # HOST
export COLOR_02="#dc322f" # SYNTAX_STRING
export COLOR_03="#859900" # COMMAND
export COLOR_04="#b58900" # COMMAND_COLOR2
export COLOR_05="#268bd2" # PATH
export COLOR_06="#ec0048" # SYNTAX_VAR
export COLOR_07="#2aa198" # PROMP
export COLOR_08="#94a3a5"
export COLOR_09="#586e75"
export COLOR_10="#cb4b16" # COMMAND_ERROR
export COLOR_11="#859900" # EXEC
export COLOR_12="#b58900"
export COLOR_13="#268bd2" # FOLDER
export COLOR_14="#d33682"
export COLOR_15="#2aa198"
export COLOR_16="#6c71c4"
export BACKGROUND_COLOR="#252e32" # Background Color
export FOREGROUND_COLOR="#94a3a5" # Text
export CURSOR_COLOR="#839496" # Cursor
export PROFILE_NAME="Freya"
# ===================== END CONFIG ======================================= #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#242526" # HOST
export COLOR_02="#f8511b" # SYNTAX_STRING
export COLOR_03="#565747" # COMMAND
export COLOR_04="#fa771d" # COMMAND_COLOR2
export COLOR_05="#2c70b7" # PATH
export COLOR_06="#f02e4f" # SYNTAX_VAR
export COLOR_07="#3ca1a6" # PROMP
export COLOR_08="#adadad" #
export COLOR_09="#5fac6d" #
export COLOR_10="#f74319" # COMMAND_ERROR
export COLOR_11="#74ec4c" # EXEC
export COLOR_12="#fdc325" #
export COLOR_13="#3393ca" # FOLDER
export COLOR_14="#e75e4f" #
export COLOR_15="#4fbce6" #
export COLOR_16="#8c735b" #
export BACKGROUND_COLOR="#1b1c1d" # Background Color
export FOREGROUND_COLOR="#adadad" # Text
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor
export PROFILE_NAME="Frontend Delight"
# =============================================================== #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#000000" # HOST
export COLOR_02="#d6262b" # SYNTAX_STRING
export COLOR_03="#919c00" # COMMAND
export COLOR_04="#be8a13" # COMMAND_COLOR2
export COLOR_05="#4699a3" # PATH
export COLOR_06="#8d4331" # SYNTAX_VAR
export COLOR_07="#da8213" # PROMP
export COLOR_08="#ddc265" #
export COLOR_09="#7f6a55" #
export COLOR_10="#e55a1c" # COMMAND_ERROR
export COLOR_11="#bfc65a" # EXEC
export COLOR_12="#ffcb1b" #
export COLOR_13="#7cc9cf" # FOLDER
export COLOR_14="#d26349" #
export COLOR_15="#e6a96b" #
export COLOR_16="#ffeaa3" #
export BACKGROUND_COLOR="#251200" # Background Color
export FOREGROUND_COLOR="#dec165" # Text
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor
export PROFILE_NAME="Frontend Fun Forrest"
# =============================================================== #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#000000" # HOST
export COLOR_02="#f9555f" # SYNTAX_STRING
export COLOR_03="#21b089" # COMMAND
export COLOR_04="#fef02a" # COMMAND_COLOR2
export COLOR_05="#589df6" # PATH
export COLOR_06="#944d95" # SYNTAX_VAR
export COLOR_07="#1f9ee7" # PROMP
export COLOR_08="#bbbbbb" #
export COLOR_09="#555555" #
export COLOR_10="#fa8c8f" # COMMAND_ERROR
export COLOR_11="#35bb9a" # EXEC
export COLOR_12="#ffff55" #
export COLOR_13="#589df6" # FOLDER
export COLOR_14="#e75699" #
export COLOR_15="#3979bc" #
export COLOR_16="#ffffff" #
export BACKGROUND_COLOR="#1d2837" # Background Color
export FOREGROUND_COLOR="#ffffff" # Text
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor
export PROFILE_NAME="Frontend Galaxy"
# =============================================================== #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,48 @@
#!/usr/bin/env bash
#==================== CONFIG THIS ======================#
export COLOR_01='#F9F5F5' # HOST :: WHITE
export COLOR_02='#CC0000' # SYNTAX_STRING :: RED
export COLOR_03='#1F1E1F' # COMMAND :: BLACK
export COLOR_04='#ADA110' # COMMAND_COLOR2:: YELLOW
export COLOR_05='#FF004E' # PATH :: PINK
export COLOR_06='#75507B' # SYNTAX_VAR :: PURPLE
export COLOR_07='#06919A' # PROMP :: BLUE
export COLOR_08='#FFFFFF' # :: CREAM WHITE
export COLOR_09='#555753' # :: DARK GREY
export COLOR_10='#EF2929' # COMMAND_ERROR :: RED
export COLOR_11='#FF0000' # EXEC :: RED
export COLOR_12='#ADA110' # :: YELLOW
export COLOR_13='#5F4AA6' # FOLDER :: PURPLE
export COLOR_14='#B74438' # :: DARK RED
export COLOR_15='#408F0C' # :: GREEN
export COLOR_16='#FFFFFF' # :: WHITE
export BACKGROUND_COLOR='#1F1E1F' #BACKGROUND COLOR :: GREYGEO
export FOREGROUND_COLOR='#FFFFFF' #FOREGROUND COLOR (TEXT) :: WHITE
export CURSOR_COLOR="$FOREGROUND_COLOR" #CURSORT COLOR
export PROFILE_NAME="GeoHot"
#==================== CONFIG THIS ======================#
#=======================================================#
# | APPLY COLOR |
#=======================================================#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#3e3e3e" # HOST
export COLOR_02="#970b16" # SYNTAX_STRING
export COLOR_03="#07962a" # COMMAND
export COLOR_04="#f8eec7" # COMMAND_COLOR2
export COLOR_05="#003e8a" # PATH
export COLOR_06="#e94691" # SYNTAX_VAR
export COLOR_07="#89d1ec" # PROMP
export COLOR_08="#ffffff" #
export COLOR_09="#666666" #
export COLOR_10="#de0000" # COMMAND_ERROR
export COLOR_11="#87d5a2" # EXEC
export COLOR_12="#f1d007" #
export COLOR_13="#2e6cba" # FOLDER
export COLOR_14="#ffa29f" #
export COLOR_15="#1cfafe" #
export COLOR_16="#ffffff" #
export BACKGROUND_COLOR="#f4f4f4" # Background Color
export FOREGROUND_COLOR="#3e3e3e" # Text
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor
export PROFILE_NAME="Github"
# =============================================================== #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#292D3E" # Black
export COLOR_02="#F07178" # Red
export COLOR_03="#62DE84" # Green
export COLOR_04="#FFCB6B" # Yellow
export COLOR_05="#75A1FF" # Blue
export COLOR_06="#F580FF" # Magenta
export COLOR_07="#60BAEC" # Cyan
export COLOR_08="#ABB2BF" # Light gray
export COLOR_09="#959DCB" # Dark gray
export COLOR_10="#F07178" # Light Red
export COLOR_11="#C3E88D" # Light Green
export COLOR_12="#FF5572" # Light Yellow
export COLOR_13="#82AAFF" # Light Blue
export COLOR_14="#FFCB6B" # Light Magenta
export COLOR_15="#676E95" # Light Cyan
export COLOR_16="#FFFEFE" # White
export BACKGROUND_COLOR="#292D3E" # Background Color
export FOREGROUND_COLOR="#BFC7D5" # Foreground Color (text)
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor color
export PROFILE_NAME="Gogh"
# =============================================================== #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#000009" # Black
export COLOR_02="#BB4F6C" # Red
export COLOR_03="#72CCAE" # Green
export COLOR_04="#C65E3D" # Yellow
export COLOR_05="#58B6CA" # Blue
export COLOR_06="#6488C4" # Cyan
export COLOR_07="#8D84C6" # Magenta
export COLOR_08="#858893" # Light gray
export COLOR_09="#1f222d" # Dark gray
export COLOR_10="#ee829f" # Light Red
export COLOR_11="#a5ffe1" # Light Green
export COLOR_12="#f99170" # Light Yellow
export COLOR_13="#8be9fd" # Light Blue
export COLOR_14="#97bbf7" # Light Cyan
export COLOR_15="#c0b7f9" # Light Magenta
export COLOR_16="#ffffff" # White
export BACKGROUND_COLOR="#0D101B" # Background Color
export FOREGROUND_COLOR="#EBEEF9" # Foreground Color (text)
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor color
export PROFILE_NAME="gooey"
# =============================================
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#202124" # Black
export COLOR_02="#EA4335" # Red
export COLOR_03="#34A853" # Green
export COLOR_04="#FBBC04" # Yellow
export COLOR_05="#4285F4" # Blue
export COLOR_06="#A142F4" # Cyan
export COLOR_07="#24C1E0" # Purple
export COLOR_08="#E8EAED" # Light gray
export COLOR_09="#5F6368" # Dark gray
export COLOR_10="#EA4335" # Bright Red
export COLOR_11="#34A853" # Bright Green
export COLOR_12="#FBBC05" # Bright Yellow
export COLOR_13="#4285F4" # Bright Blue
export COLOR_14="#A142F4" # Bright Cyan
export COLOR_15="#24C1E0" # Bright Purple
export COLOR_16="#FFFFFF" # White
export BACKGROUND_COLOR="#202124" # Background Color
export FOREGROUND_COLOR="#E8EAED" # Foreground Color (text)
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor color
export PROFILE_NAME="Google Dark"
# =============================================
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#202124" # Black
export COLOR_02="#EA4335" # Red
export COLOR_03="#34A853" # Green
export COLOR_04="#FBBC04" # Yellow
export COLOR_05="#4285F4" # Blue
export COLOR_06="#A142F4" # Cyan
export COLOR_07="#24C1E0" # Purple
export COLOR_08="#E8EAED" # Light gray
export COLOR_09="#5F6368" # Dark gray
export COLOR_10="#EA4335" # Bright Red
export COLOR_11="#34A853" # Bright Green
export COLOR_12="#FBBC05" # Bright Yellow
export COLOR_13="#4285F4" # Bright Blue
export COLOR_14="#A142F4" # Bright Cyan
export COLOR_15="#24C1E0" # Bright Purple
export COLOR_16="#FFFFFF" # White
export BACKGROUND_COLOR="#FFFFFF" # Background Color
export FOREGROUND_COLOR="#5F6368" # Foreground Color (text)
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor color
export PROFILE_NAME="Google Light"
# =============================================
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#0a0f14" # Base 00 - Black
export COLOR_02="#c33027" # Base 08 - Red
export COLOR_03="#26a98b" # Base 0B - Green
export COLOR_04="#edb54b" # Base 0A - Yellow
export COLOR_05="#195465" # Base 0D - Blue
export COLOR_06="#4e5165" # Base 0E - Magenta
export COLOR_07="#33859d" # Base 0C - Cyan
export COLOR_08="#98d1ce" # Base 05 - White
export COLOR_09="#10151b" # Base 03 - Bright Black
export COLOR_10="#d26939" # Base 08 - Bright Red
export COLOR_11="#081f2d" # Base 0B - Bright Green
export COLOR_12="#245361" # Base 0A - Bright Yellow
export COLOR_13="#093748" # Base 0D - Bright Blue
export COLOR_14="#888ba5" # Base 0E - Bright Magenta
export COLOR_15="#599caa" # Base 0C - Bright Cyan
export COLOR_16="#d3ebe9" # Base 07 - Bright White
export FOREGROUND_COLOR="#98d1ce" # Base 05
export BACKGROUND_COLOR="#0a0f14" # Base 00
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor
export PROFILE_NAME="gotham"
# =============================================================== #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#2d283f" # HOST
export COLOR_02="#ed2261" # SYNTAX_STRING
export COLOR_03="#1fa91b" # COMMAND
export COLOR_04="#8ddc20" # COMMAND_COLOR2
export COLOR_05="#487df4" # PATH
export COLOR_06="#8d35c9" # SYNTAX_VAR
export COLOR_07="#3bdeed" # PROMP
export COLOR_08="#9e9ea0" #
export COLOR_09="#59516a" #
export COLOR_10="#f0729a" # COMMAND_ERROR
export COLOR_11="#53aa5e" # EXEC
export COLOR_12="#b2dc87" #
export COLOR_13="#a9bcec" # FOLDER
export COLOR_14="#ad81c2" #
export COLOR_15="#9de3eb" #
export COLOR_16="#a288f7" #
export BACKGROUND_COLOR="#171423" # Background Color
export FOREGROUND_COLOR="#9f9fa1" # Text
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor
export PROFILE_NAME="Grape"
# =============================================================== #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#000000" # HOST
export COLOR_02="#bb0000" # SYNTAX_STRING
export COLOR_03="#00bb00" # COMMAND
export COLOR_04="#e7b000" # COMMAND_COLOR2
export COLOR_05="#0000a3" # PATH
export COLOR_06="#950062" # SYNTAX_VAR
export COLOR_07="#00bbbb" # PROMP
export COLOR_08="#bbbbbb" #
export COLOR_09="#555555" #
export COLOR_10="#bb0000" # COMMAND_ERROR
export COLOR_11="#00bb00" # EXEC
export COLOR_12="#e7b000" #
export COLOR_13="#0000bb" # FOLDER
export COLOR_14="#ff55ff" #
export COLOR_15="#55ffff" #
export COLOR_16="#ffffff" #
export BACKGROUND_COLOR="#13773d" # Background Color
export FOREGROUND_COLOR="#fff0a5" # Text
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor
export PROFILE_NAME="Grass"
# =============================================================== #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#282828" # HOST
export COLOR_02="#cc241d" # SYNTAX_STRING
export COLOR_03="#98971a" # COMMAND
export COLOR_04="#d79921" # COMMAND_COLOR2
export COLOR_05="#458588" # PATH
export COLOR_06="#b16286" # SYNTAX_VAR
export COLOR_07="#689d6a" # PROMP
export COLOR_08="#a89984" #
export COLOR_09="#928374" #
export COLOR_10="#fb4934" # COMMAND_ERROR
export COLOR_11="#b8bb26" # EXEC
export COLOR_12="#fabd2f" #
export COLOR_13="#83a598" # FOLDER
export COLOR_14="#d3869b" #
export COLOR_15="#8ec07c" #
export COLOR_16="#ebdbb2" #
export BACKGROUND_COLOR="#282828" # Background Color
export FOREGROUND_COLOR="#ebdbb2" # Text
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor
export PROFILE_NAME="Gruvbox Dark"
# =============================================================== #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#fbf1c7" # HOST
export COLOR_02="#cc241d" # SYNTAX_STRING
export COLOR_03="#98971a" # COMMAND
export COLOR_04="#d79921" # COMMAND_COLOR2
export COLOR_05="#458588" # PATH
export COLOR_06="#b16286" # SYNTAX_VAR
export COLOR_07="#689d6a" # PROMP
export COLOR_08="#7c6f64" #
export COLOR_09="#928374" #
export COLOR_10="#9d0006" # COMMAND_ERROR
export COLOR_11="#79740e" # EXEC
export COLOR_12="#b57614" #
export COLOR_13="#076678" # FOLDER
export COLOR_14="#8f3f71" #
export COLOR_15="#427b58" #
export COLOR_16="#3c3836" #
export BACKGROUND_COLOR="#fbf1c7" # Background Color
export FOREGROUND_COLOR="#3c3836" # Text
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor
export PROFILE_NAME="Gruvbox"
# =============================================================== #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#1b1d1e" # HOST
export COLOR_02="#f92672" # SYNTAX_STRING
export COLOR_03="#a6e22e" # COMMAND
export COLOR_04="#fd971f" # COMMAND_COLOR2
export COLOR_05="#66d9ef" # PATH
export COLOR_06="#9e6ffe" # SYNTAX_VAR
export COLOR_07="#5e7175" # PROMP
export COLOR_08="#ccccc6" #
export COLOR_09="#505354" #
export COLOR_10="#ff669d" # COMMAND_ERROR
export COLOR_11="#beed5f" # EXEC
export COLOR_12="#e6db74" #
export COLOR_13="#66d9ef" # FOLDER
export COLOR_14="#9e6ffe" #
export COLOR_15="#a3babf" #
export COLOR_16="#f8f8f2" #
export BACKGROUND_COLOR="#121212" # Background Color
export FOREGROUND_COLOR="#a0a0a0" # Text
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor
export PROFILE_NAME="Hardcore"
# =============================================================== #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#010101" # HOST
export COLOR_02="#f8b63f" # SYNTAX_STRING
export COLOR_03="#7fb5e1" # COMMAND
export COLOR_04="#d6da25" # COMMAND_COLOR2
export COLOR_05="#489e48" # PATH
export COLOR_06="#b296c6" # SYNTAX_VAR
export COLOR_07="#f5bfd7" # PROMP
export COLOR_08="#a8a49d" #
export COLOR_09="#726e6a" #
export COLOR_10="#f8b63f" # COMMAND_ERROR
export COLOR_11="#7fb5e1" # EXEC
export COLOR_12="#d6da25" #
export COLOR_13="#489e48" # FOLDER
export COLOR_14="#b296c6" #
export COLOR_15="#f5bfd7" #
export COLOR_16="#fefbea" #
export BACKGROUND_COLOR="#010101" # Background Color
export FOREGROUND_COLOR="#a8a49d" # Text
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor
export PROFILE_NAME="Harper"
# =============================================================== #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#444444"
export COLOR_02="#FF0054"
export COLOR_03="#B1D630"
export COLOR_04="#9D895E"
export COLOR_05="#67BEE3"
export COLOR_06="#B576BC"
export COLOR_07="#569A9F"
export COLOR_08="#EDEDED"
export COLOR_09="#777777"
export COLOR_10="#D65E75"
export COLOR_11="#BAFFAA"
export COLOR_12="#ECE1C8"
export COLOR_13="#9FD3E5"
export COLOR_14="#DEB3DF"
export COLOR_15="#B6E0E5"
export COLOR_16="#FFFFFF"
export BACKGROUND_COLOR="#000000"
export FOREGROUND_COLOR="#FFFFFF"
export CURSOR_COLOR="#BAFFAA"
export PROFILE_NAME="Hemisu Dark"
# =============================================================== #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#777777"
export COLOR_02="#FF0055"
export COLOR_03="#739100"
export COLOR_04="#503D15"
export COLOR_05="#538091"
export COLOR_06="#5B345E"
export COLOR_07="#538091"
export COLOR_08="#999999"
export COLOR_09="#999999"
export COLOR_10="#D65E76"
export COLOR_11="#9CC700"
export COLOR_12="#947555"
export COLOR_13="#9DB3CD"
export COLOR_14="#A184A4"
export COLOR_15="#85B2AA"
export COLOR_16="#BABABA"
export BACKGROUND_COLOR="#EFEFEF"
export FOREGROUND_COLOR="#444444"
export CURSOR_COLOR="#FF0054"
export PROFILE_NAME="Hemisu Light"
# =============================================================== #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#000000" # HOST
export COLOR_02="#d00e18" # SYNTAX_STRING
export COLOR_03="#138034" # COMMAND
export COLOR_04="#ffcb3e" # COMMAND_COLOR2
export COLOR_05="#006bb3" # PATH
export COLOR_06="#6b2775" # SYNTAX_VAR
export COLOR_07="#384564" # PROMP
export COLOR_08="#ededed" #
export COLOR_09="#5d504a" #
export COLOR_10="#f07e18" # COMMAND_ERROR
export COLOR_11="#b1d130" # EXEC
export COLOR_12="#fff120" #
export COLOR_13="#4fc2fd" # FOLDER
export COLOR_14="#de0071" #
export COLOR_15="#5d504a" #
export COLOR_16="#ffffff" #
export BACKGROUND_COLOR="#222225" # Background Color
export FOREGROUND_COLOR="#ededed" # Text
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor
export PROFILE_NAME="Highway"
# =============================================================== #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#000000" # HOST
export COLOR_02="#b6214a" # SYNTAX_STRING
export COLOR_03="#00a600" # COMMAND
export COLOR_04="#bfbf00" # COMMAND_COLOR2
export COLOR_05="#246eb2" # PATH
export COLOR_06="#b200b2" # SYNTAX_VAR
export COLOR_07="#00a6b2" # PROMP
export COLOR_08="#bfbfbf" #
export COLOR_09="#666666" #
export COLOR_10="#e50000" # COMMAND_ERROR
export COLOR_11="#86a93e" # EXEC
export COLOR_12="#e5e500" #
export COLOR_13="#0000ff" # FOLDER
export COLOR_14="#e500e5" #
export COLOR_15="#00e5e5" #
export COLOR_16="#e5e5e5" #
export BACKGROUND_COLOR="#100b05" # Background Color
export FOREGROUND_COLOR="#84c138" # Text
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor
export PROFILE_NAME="Hipster Green"
# =============================================================== #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#000000" # HOST
export COLOR_02="#990000" # SYNTAX_STRING
export COLOR_03="#00a600" # COMMAND
export COLOR_04="#999900" # COMMAND_COLOR2
export COLOR_05="#0000b2" # PATH
export COLOR_06="#b200b2" # SYNTAX_VAR
export COLOR_07="#00a6b2" # PROMP
export COLOR_08="#bfbfbf" #
export COLOR_09="#666666" #
export COLOR_10="#e50000" # COMMAND_ERROR
export COLOR_11="#00d900" # EXEC
export COLOR_12="#e5e500" #
export COLOR_13="#0000ff" # FOLDER
export COLOR_14="#e500e5" #
export COLOR_15="#00e5e5" #
export COLOR_16="#e5e5e5" #
export BACKGROUND_COLOR="#000000" # Background Color
export FOREGROUND_COLOR="#00ff00" # Text
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor
export PROFILE_NAME="Homebrew"
# =============================================================== #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#16161C" # Black
export COLOR_02="#DA103F" # Red
export COLOR_03="#1EB980" # Green
export COLOR_04="#F6661E" # Yellow
export COLOR_05="#26BBD9" # Blue
export COLOR_06="#EE64AE" # Magenta
export COLOR_07="#1D8991" # Cyan
export COLOR_08="#FADAD1" # Light gray
export COLOR_09="#1A1C23" # Dark gray
export COLOR_10="#F43E5C" # Light Red
export COLOR_11="#07DA8C" # Light Green
export COLOR_12="#F77D26" # Light Yellow
export COLOR_13="#3FC6DE" # Light Blue
export COLOR_14="#F075B7" # Light Magenta
export COLOR_15="#1EAEAE" # Light Cyan
export COLOR_16="#FDF0ED" # White
export BACKGROUND_COLOR="#FDF0ED" # Background Color
export FOREGROUND_COLOR="#1C1E26" # Foreground Color (text)
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor color
export PROFILE_NAME="Horizon Bright"
# =============================================================== #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#16161C" # Black
export COLOR_02="#E95678" # Red
export COLOR_03="#29D398" # Green
export COLOR_04="#FAB795" # Yellow
export COLOR_05="#26BBD9" # Blue
export COLOR_06="#EE64AE" # Magenta
export COLOR_07="#59E3E3" # Cyan
export COLOR_08="#FADAD1" # Light gray
export COLOR_09="#232530" # Dark gray
export COLOR_10="#EC6A88" # Light Red
export COLOR_11="#3FDAA4" # Light Green
export COLOR_12="#FBC3A7" # Light Yellow
export COLOR_13="#3FC6DE" # Light Blue
export COLOR_14="#F075B7" # Light Magenta
export COLOR_15="#6BE6E6" # Light Cyan
export COLOR_16="#FDF0ED" # White
export BACKGROUND_COLOR="#1C1E26" # Background Color
export FOREGROUND_COLOR="#FDF0ED" # Foreground Color (text)
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor color
export PROFILE_NAME="Horizon Dark"
# =============================================================== #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#575757" # HOST
export COLOR_02="#ff1b00" # SYNTAX_STRING
export COLOR_03="#a5e055" # COMMAND
export COLOR_04="#fbe74a" # COMMAND_COLOR2
export COLOR_05="#496487" # PATH
export COLOR_06="#fd5ff1" # SYNTAX_VAR
export COLOR_07="#86e9fe" # PROMP
export COLOR_08="#cbcccb" #
export COLOR_09="#262626" #
export COLOR_10="#d51d00" # COMMAND_ERROR
export COLOR_11="#a5df55" # EXEC
export COLOR_12="#fbe84a" #
export COLOR_13="#89beff" # FOLDER
export COLOR_14="#c001c1" #
export COLOR_15="#86eafe" #
export COLOR_16="#dbdbdb" #
export BACKGROUND_COLOR="#000000" # Background Color
export FOREGROUND_COLOR="#dbdbdb" # Text
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor
export PROFILE_NAME="Hurtado"
# =============================================================== #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#282a2e" # HOST
export COLOR_02="#A54242" # SYNTAX_STRING
export COLOR_03="#8C9440" # COMMAND
export COLOR_04="#de935f" # COMMAND_COLOR2
export COLOR_05="#5F819D" # PATH
export COLOR_06="#85678F" # SYNTAX_VAR
export COLOR_07="#5E8D87" # PROMP
export COLOR_08="#969896" #
export COLOR_09="#373b41" #
export COLOR_10="#cc6666" # COMMAND_ERROR
export COLOR_11="#b5bd68" # EXEC
export COLOR_12="#f0c674" #
export COLOR_13="#81a2be" # FOLDER
export COLOR_14="#b294bb" #
export COLOR_15="#8abeb7" #
export COLOR_16="#c5c8c6" #
export BACKGROUND_COLOR="#141414" # Background Color
export FOREGROUND_COLOR="#94a3a5" # Text
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor
export PROFILE_NAME="Hybrid"
# =============================================================== #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#000000" # Black
export COLOR_02="#FF0000" # Red
export COLOR_03="#00FF00" # Green
export COLOR_04="#FFFF00" # Yellow
export COLOR_05="#00BFFF" # Blue
export COLOR_06="#FFC0CB" # Magenta
export COLOR_07="#40E0D0" # Cyan
export COLOR_08="#BEBEBE" # Light gray
export COLOR_09="#414141" # Dark gray
export COLOR_10="#FFA500" # Light Red
export COLOR_11="#98FB98" # Light Green
export COLOR_12="#FFFF00" # Light Yellow
export COLOR_13="#0000CD" # Light Blue
export COLOR_14="#A020F0" # Light Magenta
export COLOR_15="#AEEEEE" # Light Cyan
export COLOR_16="#FFFFFF" # White
export BACKGROUND_COLOR="#000000" # Background Color
export FOREGROUND_COLOR="#FDFDFD" # Foreground Color (text)
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor color
export PROFILE_NAME="IBM 3270 (High Contrast)"
# =============================================================== #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#222222" # Black
export COLOR_02="#F01818" # Red
export COLOR_03="#24D830" # Green
export COLOR_04="#F0D824" # Yellow
export COLOR_05="#7890F0" # Blue
export COLOR_06="#F078D8" # Magenta
export COLOR_07="#54E4E4" # Cyan
export COLOR_08="#A5A5A5" # Light gray
export COLOR_09="#888888" # Dark gray
export COLOR_10="#EF8383" # Light Red
export COLOR_11="#7ED684" # Light Green
export COLOR_12="#EFE28B" # Light Yellow
export COLOR_13="#B3BFEF" # Light Blue
export COLOR_14="#EFB3E3" # Light Magenta
export COLOR_15="#9CE2E2" # Light Cyan
export COLOR_16="#FFFFFF" # White
export BACKGROUND_COLOR="#000000" # Background Color
export FOREGROUND_COLOR="#FDFDFD" # Foreground Color (text)
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor color
export PROFILE_NAME="ibm3270"
# =============================================================== #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#1f1f1f" # HOST
export COLOR_02="#fb002a" # SYNTAX_STRING
export COLOR_03="#339c24" # COMMAND
export COLOR_04="#659b25" # COMMAND_COLOR2
export COLOR_05="#149b45" # PATH
export COLOR_06="#53b82c" # SYNTAX_VAR
export COLOR_07="#2cb868" # PROMP
export COLOR_08="#e0ffef" #
export COLOR_09="#032710" #
export COLOR_10="#a7ff3f" # COMMAND_ERROR
export COLOR_11="#9fff6d" # EXEC
export COLOR_12="#d2ff6d" #
export COLOR_13="#72ffb5" # FOLDER
export COLOR_14="#50ff3e" #
export COLOR_15="#22ff71" #
export COLOR_16="#daefd0" #
export BACKGROUND_COLOR="#3a3d3f" # Background Color
export FOREGROUND_COLOR="#d9efd3" # Text
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor
export PROFILE_NAME="IC Green PPL"
# =============================================================== #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#000000" # HOST
export COLOR_02="#c13900" # SYNTAX_STRING
export COLOR_03="#a4a900" # COMMAND
export COLOR_04="#caaf00" # COMMAND_COLOR2
export COLOR_05="#bd6d00" # PATH
export COLOR_06="#fc5e00" # SYNTAX_VAR
export COLOR_07="#f79500" # PROMP
export COLOR_08="#ffc88a" #
export COLOR_09="#6a4f2a" #
export COLOR_10="#ff8c68" # COMMAND_ERROR
export COLOR_11="#f6ff40" # EXEC
export COLOR_12="#ffe36e" #
export COLOR_13="#ffbe55" # FOLDER
export COLOR_14="#fc874f" #
export COLOR_15="#c69752" #
export COLOR_16="#fafaff" #
export BACKGROUND_COLOR="#262626" # Background Color
export FOREGROUND_COLOR="#ffcb83" # Text
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor
export PROFILE_NAME="IC Orange PPL"
# =============================================================== #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#323232" # HOST
export COLOR_02="#d25252" # SYNTAX_STRING
export COLOR_03="#7fe173" # COMMAND
export COLOR_04="#ffc66d" # COMMAND_COLOR2
export COLOR_05="#4099ff" # PATH
export COLOR_06="#f680ff" # SYNTAX_VAR
export COLOR_07="#bed6ff" # PROMP
export COLOR_08="#eeeeec" #
export COLOR_09="#535353" #
export COLOR_10="#f07070" # COMMAND_ERROR
export COLOR_11="#9dff91" # EXEC
export COLOR_12="#ffe48b" #
export COLOR_13="#5eb7f7" # FOLDER
export COLOR_14="#ff9dff" #
export COLOR_15="#dcf4ff" #
export COLOR_16="#ffffff" #
export BACKGROUND_COLOR="#323232" # Background Color
export FOREGROUND_COLOR="#ffffff" # Text
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor
export PROFILE_NAME="Idle Toes"
# =============================================================== #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#4e4e4e" # HOST
export COLOR_02="#ff6c60" # SYNTAX_STRING
export COLOR_03="#a8ff60" # COMMAND
export COLOR_04="#ffffb6" # COMMAND_COLOR2
export COLOR_05="#69cbfe" # PATH
export COLOR_06="#ff73Fd" # SYNTAX_VAR
export COLOR_07="#c6c5fe" # PROMP
export COLOR_08="#eeeeee" #
export COLOR_09="#7c7c7c" #
export COLOR_10="#ffb6b0" # COMMAND_ERROR
export COLOR_11="#ceffac" # EXEC
export COLOR_12="#ffffcb" #
export COLOR_13="#b5dcfe" # FOLDER
export COLOR_14="#ff9cfe" #
export COLOR_15="#dfdffe" #
export COLOR_16="#ffffff" #
export BACKGROUND_COLOR="#000000" # Background Color
export FOREGROUND_COLOR="#eeeeee" # Text
export CURSOR_COLOR="#ffa560" # Cursor
export PROFILE_NAME="Ir Black"
# =============================================
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#2c1d16" # HOST
export COLOR_02="#ef5734" # SYNTAX_STRING
export COLOR_03="#2baf2b" # COMMAND
export COLOR_04="#bebf00" # COMMAND_COLOR2
export COLOR_05="#246eb2" # PATH
export COLOR_06="#d05ec1" # SYNTAX_VAR
export COLOR_07="#00acee" # PROMP
export COLOR_08="#bfbfbf" #
export COLOR_09="#666666" #
export COLOR_10="#e50000" # COMMAND_ERROR
export COLOR_11="#86a93e" # EXEC
export COLOR_12="#e5e500" #
export COLOR_13="#0000ff" # FOLDER
export COLOR_14="#e500e5" #
export COLOR_15="#00e5e5" #
export COLOR_16="#e5e5e5" #
export BACKGROUND_COLOR="#2c1d16" # Background Color
export FOREGROUND_COLOR="#ffcc2f" # Text
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor
export PROFILE_NAME="Jackie Brown"
# =============================================================== #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#343935" # HOST
export COLOR_02="#cf3f61" # SYNTAX_STRING
export COLOR_03="#7bb75b" # COMMAND
export COLOR_04="#e9b32a" # COMMAND_COLOR2
export COLOR_05="#4c9ad4" # PATH
export COLOR_06="#a57fc4" # SYNTAX_VAR
export COLOR_07="#389aad" # PROMP
export COLOR_08="#fafaf6" #
export COLOR_09="#595b59" #
export COLOR_10="#d18fa6" # COMMAND_ERROR
export COLOR_11="#767f2c" # EXEC
export COLOR_12="#78592f" #
export COLOR_13="#135979" # FOLDER
export COLOR_14="#604291" #
export COLOR_15="#76bbca" #
export COLOR_16="#b2b5ae" #
export BACKGROUND_COLOR="#1e1e1e" # Background Color
export FOREGROUND_COLOR="#f7f6ec" # Text
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor
export PROFILE_NAME="Japanesque"
# =============================================================== #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#929292" # HOST
export COLOR_02="#e27373" # SYNTAX_STRING
export COLOR_03="#94b979" # COMMAND
export COLOR_04="#ffba7b" # COMMAND_COLOR2
export COLOR_05="#97bedc" # PATH
export COLOR_06="#e1c0fa" # SYNTAX_VAR
export COLOR_07="#00988e" # PROMP
export COLOR_08="#dedede" #
export COLOR_09="#bdbdbd" #
export COLOR_10="#ffa1a1" # COMMAND_ERROR
export COLOR_11="#bddeab" # EXEC
export COLOR_12="#ffdca0" #
export COLOR_13="#b1d8f6" # FOLDER
export COLOR_14="#fbdaff" #
export COLOR_15="#1ab2a8" #
export COLOR_16="#ffffff" #
export BACKGROUND_COLOR="#121212" # Background Color
export FOREGROUND_COLOR="#dedede" # Text
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor
export PROFILE_NAME="Jellybeans"
# =============================================================== #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#000000" # HOST
export COLOR_02="#dd006f" # SYNTAX_STRING
export COLOR_03="#6fdd00" # COMMAND
export COLOR_04="#dd6f00" # COMMAND_COLOR2
export COLOR_05="#006fdd" # PATH
export COLOR_06="#6f00dd" # SYNTAX_VAR
export COLOR_07="#00dd6f" # PROMP
export COLOR_08="#f2f2f2" #
export COLOR_09="#7d7d7d" #
export COLOR_10="#ff74b9" # COMMAND_ERROR
export COLOR_11="#b9ff74" # EXEC
export COLOR_12="#ffb974" #
export COLOR_13="#74b9ff" # FOLDER
export COLOR_14="#b974ff" #
export COLOR_15="#74ffb9" #
export COLOR_16="#ffffff" #
export BACKGROUND_COLOR="#758480" # Background Color
export FOREGROUND_COLOR="#23476a" # Text
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor
export PROFILE_NAME="Jup"
# ===================== END CONFIG ======================================= #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#4d4d4d" # HOST
export COLOR_02="#c70031" # SYNTAX_STRING
export COLOR_03="#29cf13" # COMMAND
export COLOR_04="#d8e30e" # COMMAND_COLOR2
export COLOR_05="#3449d1" # PATH
export COLOR_06="#8400ff" # SYNTAX_VAR
export COLOR_07="#0798ab" # PROMP
export COLOR_08="#e2d1e3" #
export COLOR_09="#5a5a5a" #
export COLOR_10="#f01578" # COMMAND_ERROR
export COLOR_11="#6ce05c" # EXEC
export COLOR_12="#f3f79e" #
export COLOR_13="#97a4f7" # FOLDER
export COLOR_14="#c495f0" #
export COLOR_15="#68f2e0" #
export COLOR_16="#ffffff" #
export BACKGROUND_COLOR="#0e100a" # Background Color
export FOREGROUND_COLOR="#f7f7f7" # Text
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor
export PROFILE_NAME="Kibble"
# =============================================================== #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#2E8744" # Black
export COLOR_02="#D84E4C" # Red
export COLOR_03="#95DA5A" # Green
export COLOR_04="#D6E264" # Yellow
export COLOR_05="#4B9ED7" # Blue
export COLOR_06="#945FC5" # Magenta
export COLOR_07="#D89B25" # Cyan
export COLOR_08="#D8E2D7" # Light gray
export COLOR_09="#34934F" # Dark gray
export COLOR_10="#FF4F59" # Light Red
export COLOR_11="#AFF56A" # Light Green
export COLOR_12="#FCFF75" # Light Yellow
export COLOR_13="#57AEFF" # Light Blue
export COLOR_14="#AE63E9" # Light Magenta
export COLOR_15="#FFAA2B" # Light Cyan
export COLOR_16="#FFFEFE" # White
export BACKGROUND_COLOR="#0D4A08" # Background Color
export FOREGROUND_COLOR="#D8E2D7" # Foreground Color (text)
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor color
export PROFILE_NAME="kokuban"
# =============================================================== #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#39243A" # Black
export COLOR_02="#EB64B9" # Red
export COLOR_03="#AFD686" # Green
export COLOR_04="#FEAE87" # Yellow
export COLOR_05="#40B4C4" # Blue
export COLOR_06="#B381C5" # Magenta
export COLOR_07="#215969" # Cyan
export COLOR_08="#91889b" # Light gray
export COLOR_09="#716485" # Dark gray
export COLOR_10="#FC2377" # Light Red
export COLOR_11="#50FA7B" # Light Green
export COLOR_12="#FFE261" # Light Yellow
export COLOR_13="#74DFC4" # Light Blue
export COLOR_14="#6D75E0" # Light Magenta
export COLOR_15="#B4DCE7" # Light Cyan
export COLOR_16="#FFFFFF" # White
export BACKGROUND_COLOR="#1F1926" # Background Color
export FOREGROUND_COLOR="#E0E0E0" # Foreground Color (text)
export CURSOR_COLOR="#C7C7C7" # Cursor color
export PROFILE_NAME="laserwave"
# =============================================================== #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#2b2b2b" # HOST
export COLOR_02="#d45a60" # SYNTAX_STRING
export COLOR_03="#afba67" # COMMAND
export COLOR_04="#e5d289" # COMMAND_COLOR2
export COLOR_05="#a0bad6" # PATH
export COLOR_06="#c092d6" # SYNTAX_VAR
export COLOR_07="#91bfb7" # PROMP
export COLOR_08="#3c3d3d" #
export COLOR_09="#454747" #
export COLOR_10="#d3232f" # COMMAND_ERROR
export COLOR_11="#aabb39" # EXEC
export COLOR_12="#e5be39" #
export COLOR_13="#6699d6" # FOLDER
export COLOR_14="#ab53d6" #
export COLOR_15="#5fc0ae" #
export COLOR_16="#c1c2c2" #
export BACKGROUND_COLOR="#222222" # Background Color
export FOREGROUND_COLOR="#959595" # Text
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor
export PROFILE_NAME="Later This Evening"
# =============================================================== #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#230046" # HOST
export COLOR_02="#7d1625" # SYNTAX_STRING
export COLOR_03="#337e6f" # COMMAND
export COLOR_04="#7f6f49" # COMMAND_COLOR2
export COLOR_05="#4f4a7f" # PATH
export COLOR_06="#5a3f7f" # SYNTAX_VAR
export COLOR_07="#58777f" # PROMP
export COLOR_08="#736e7d" #
export COLOR_09="#372d46" #
export COLOR_10="#e05167" # COMMAND_ERROR
export COLOR_11="#52e0c4" # EXEC
export COLOR_12="#e0c386" #
export COLOR_13="#8e87e0" # FOLDER
export COLOR_14="#a776e0" #
export COLOR_15="#9ad4e0" #
export COLOR_16="#8c91fa" #
export BACKGROUND_COLOR="#050014" # Background Color
export FOREGROUND_COLOR="#736e7d" # Text
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor
export PROFILE_NAME="Lavandula"
# =============================================================== #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#000000" # HOST
export COLOR_02="#ff3030" # SYNTAX_STRING
export COLOR_03="#559a70" # COMMAND
export COLOR_04="#ccac00" # COMMAND_COLOR2
export COLOR_05="#0099cc" # PATH
export COLOR_06="#cc69c8" # SYNTAX_VAR
export COLOR_07="#7ac4cc" # PROMP
export COLOR_08="#bccccc" #
export COLOR_09="#000000" #
export COLOR_10="#ff3030" # COMMAND_ERROR
export COLOR_11="#559a70" # EXEC
export COLOR_12="#ccac00" #
export COLOR_13="#0099cc" # FOLDER
export COLOR_14="#cc69c8" #
export COLOR_15="#7ac4cc" #
export COLOR_16="#bccccc" #
export BACKGROUND_COLOR="#000000" # Background Color
export FOREGROUND_COLOR="#afc2c2" # Text
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor
export PROFILE_NAME="Liquid Carbon Transparent"
# =============================================================== #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#000000" # HOST
export COLOR_02="#ff3030" # SYNTAX_STRING
export COLOR_03="#559a70" # COMMAND
export COLOR_04="#ccac00" # COMMAND_COLOR2
export COLOR_05="#0099cc" # PATH
export COLOR_06="#cc69c8" # SYNTAX_VAR
export COLOR_07="#7ac4cc" # PROMP
export COLOR_08="#bccccc" #
export COLOR_09="#000000" #
export COLOR_10="#ff3030" # COMMAND_ERROR
export COLOR_11="#559a70" # EXEC
export COLOR_12="#ccac00" #
export COLOR_13="#0099cc" # FOLDER
export COLOR_14="#cc69c8" #
export COLOR_15="#7ac4cc" #
export COLOR_16="#bccccc" #
export BACKGROUND_COLOR="#303030" # Background Color
export FOREGROUND_COLOR="#afc2c2" # Text
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor
export PROFILE_NAME="Liquid Carbon"
# =============================================================== #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#36464E" # Black
export COLOR_02="#846560" # Red
export COLOR_03="#809984" # Green
export COLOR_04="#A79A79" # Yellow
export COLOR_05="#555673" # Blue
export COLOR_06="#866C83" # Magenta
export COLOR_07="#7E98B4" # Cyan
export COLOR_08="#CACED8" # Light gray
export COLOR_09="#404F56" # Dark gray
export COLOR_10="#BB928B" # Light Red
export COLOR_11="#BFDCC2" # Light Green
export COLOR_12="#F1DFB6" # Light Yellow
export COLOR_13="#777798" # Light Blue
export COLOR_14="#BF9DB9" # Light Magenta
export COLOR_15="#BDDCFF" # Light Cyan
export COLOR_16="#DFE2ED" # White
export BACKGROUND_COLOR="#36464E" # Background Color
export FOREGROUND_COLOR="#CACED8" # Foreground Color (text)
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor color
export PROFILE_NAME="Lunaria Dark"
# =============================================================== #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#323F46" # Black
export COLOR_02="#83615B" # Red
export COLOR_03="#7F9781" # Green
export COLOR_04="#A69875" # Yellow
export COLOR_05="#53516F" # Blue
export COLOR_06="#856880" # Magenta
export COLOR_07="#7D96B2" # Cyan
export COLOR_08="#C9CDD7" # Light gray
export COLOR_09="#3D4950" # Dark gray
export COLOR_10="#BA9088" # Light Red
export COLOR_11="#BEDBC1" # Light Green
export COLOR_12="#F1DFB4" # Light Yellow
export COLOR_13="#767495" # Light Blue
export COLOR_14="#BE9CB8" # Light Magenta
export COLOR_15="#BCDBFF" # Light Cyan
export COLOR_16="#DFE2ED" # White
export BACKGROUND_COLOR="#323F46" # Background Color
export FOREGROUND_COLOR="#C9CDD7" # Foreground Color (text)
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor color
export PROFILE_NAME="Lunaria Eclipse"
# =============================================================== #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#3E3C3D" # Black
export COLOR_02="#783C1F" # Red
export COLOR_03="#497D46" # Green
export COLOR_04="#8F750B" # Yellow
export COLOR_05="#3F3566" # Blue
export COLOR_06="#793F62" # Magenta
export COLOR_07="#3778A9" # Cyan
export COLOR_08="#D5CFCC" # Light gray
export COLOR_09="#484646" # Dark gray
export COLOR_10="#B06240" # Light Red
export COLOR_11="#7BC175" # Light Green
export COLOR_12="#DCB735" # Light Yellow
export COLOR_13="#5C4F89" # Light Blue
export COLOR_14="#B56895" # Light Magenta
export COLOR_15="#64BAFF" # Light Cyan
export COLOR_16="#EBE4E1" # White
export BACKGROUND_COLOR="#EBE4E1" # Background Color
export FOREGROUND_COLOR="#484646" # Foreground Color (text)
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor color
export PROFILE_NAME="Lunaria Light"
# =============================================================== #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#232423" # Black
export COLOR_02="#BA2922" # Red
export COLOR_03="#7E807E" # Green
export COLOR_04="#4C4F4D" # Yellow
export COLOR_05="#16A085" # Blue
export COLOR_06="#43746A" # Magenta
export COLOR_07="#00CCCC" # Cyan
export COLOR_08="#E0E0E0" # Light gray
export COLOR_09="#282928" # Dark gray
export COLOR_10="#CC372C" # Light Red
export COLOR_11="#8D8F8D" # Light Green
export COLOR_12="#4E524F" # Light Yellow
export COLOR_13="#13BF9D" # Light Blue
export COLOR_14="#487D72" # Light Magenta
export COLOR_15="#00D1D1" # Light Cyan
export COLOR_16="#E8E8E8" # White
export BACKGROUND_COLOR="#31363B" # Background Color
export FOREGROUND_COLOR="#BDC3C7" # Foreground Color (text)
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor color
export PROFILE_NAME="Maia"
# =============================================================== #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#000000" # HOST
export COLOR_02="#cc0000" # SYNTAX_STRING
export COLOR_03="#00a600" # COMMAND
export COLOR_04="#999900" # COMMAND_COLOR2
export COLOR_05="#0000b2" # PATH
export COLOR_06="#b200b2" # SYNTAX_VAR
export COLOR_07="#00a6b2" # PROMP
export COLOR_08="#cccccc" #
export COLOR_09="#666666" #
export COLOR_10="#e50000" # COMMAND_ERROR
export COLOR_11="#00d900" # EXEC
export COLOR_12="#e5e500" #
export COLOR_13="#0000ff" # FOLDER
export COLOR_14="#e500e5" #
export COLOR_15="#00e5e5" #
export COLOR_16="#e5e5e5" #
export BACKGROUND_COLOR="#fef49c" # Background Color
export FOREGROUND_COLOR="#000000" # Text
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor
export PROFILE_NAME="Man Page"
# =============================================================== #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#000000" # HOST
export COLOR_02="#b5407b" # SYNTAX_STRING
export COLOR_03="#7bb540" # COMMAND
export COLOR_04="#b57b40" # COMMAND_COLOR2
export COLOR_05="#407bb5" # PATH
export COLOR_06="#7b40b5" # SYNTAX_VAR
export COLOR_07="#40b57b" # PROMP
export COLOR_08="#f8f8f8" #
export COLOR_09="#737373" #
export COLOR_10="#cd73a0" # COMMAND_ERROR
export COLOR_11="#a0cd73" # EXEC
export COLOR_12="#cda073" #
export COLOR_13="#73a0cd" # FOLDER
export COLOR_14="#a073cd" #
export COLOR_15="#73cda0" #
export COLOR_16="#ffffff" #
export BACKGROUND_COLOR="#ffffff" # Background Color
export FOREGROUND_COLOR="#23476a" # Text
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor
export PROFILE_NAME="Mar"
# =============================================================== #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#073641"
export COLOR_02="#EB606B"
export COLOR_03="#C3E88D"
export COLOR_04="#F7EB95"
export COLOR_05="#80CBC3"
export COLOR_06="#FF2490"
export COLOR_07="#AEDDFF"
export COLOR_08="#FFFFFF"
export COLOR_09="#002B36"
export COLOR_10="#EB606B"
export COLOR_11="#C3E88D"
export COLOR_12="#F7EB95"
export COLOR_13="#7DC6BF"
export COLOR_14="#6C71C3"
export COLOR_15="#34434D"
export COLOR_16="#FFFFFF"
export BACKGROUND_COLOR="#1E282C"
export FOREGROUND_COLOR="#C3C7D1"
export CURSOR_COLOR="#657B83"
export PROFILE_NAME="Material"
# =============================================================== #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#000000" # HOST
export COLOR_02="#e52222" # SYNTAX_STRING
export COLOR_03="#a6e32d" # COMMAND
export COLOR_04="#fc951e" # COMMAND_COLOR2
export COLOR_05="#c48dff" # PATH
export COLOR_06="#fa2573" # SYNTAX_VAR
export COLOR_07="#67d9f0" # PROMP
export COLOR_08="#f2f2f2" #
export COLOR_09="#555555" #
export COLOR_10="#ff5555" # COMMAND_ERROR
export COLOR_11="#55ff55" # EXEC
export COLOR_12="#ffff55" #
export COLOR_13="#5555ff" # FOLDER
export COLOR_14="#ff55ff" #
export COLOR_15="#55ffff" #
export COLOR_16="#ffffff" #
export BACKGROUND_COLOR="#000000" # Background Color
export FOREGROUND_COLOR="#bbbbbb" # Text
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor
export PROFILE_NAME="Mathias"
# =============================================================== #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#000000" # HOST
export COLOR_02="#b64c00" # SYNTAX_STRING
export COLOR_03="#7c8b16" # COMMAND
export COLOR_04="#d3bd26" # COMMAND_COLOR2
export COLOR_05="#616bb0" # PATH
export COLOR_06="#8c5a90" # SYNTAX_VAR
export COLOR_07="#916c25" # PROMP
export COLOR_08="#cac29a" #
export COLOR_09="#5e5219" #
export COLOR_10="#ff9149" # COMMAND_ERROR
export COLOR_11="#b2ca3b" # EXEC
export COLOR_12="#ffe54a" #
export COLOR_13="#acb8ff" # FOLDER
export COLOR_14="#ffa0ff" #
export COLOR_15="#ffbc51" #
export COLOR_16="#fed698" #
export BACKGROUND_COLOR="#1d1908" # Background Color
export FOREGROUND_COLOR="#cac296" # Text
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor
export PROFILE_NAME="Medallion"
# =============================================================== #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#000000" # HOST
export COLOR_02="#ff4242" # SYNTAX_STRING
export COLOR_03="#74af68" # COMMAND
export COLOR_04="#ffad29" # COMMAND_COLOR2
export COLOR_05="#338f86" # PATH
export COLOR_06="#9414e6" # SYNTAX_VAR
export COLOR_07="#23d7d7" # PROMP
export COLOR_08="#e1e1e0" #
export COLOR_09="#555555" #
export COLOR_10="#ff3242" # COMMAND_ERROR
export COLOR_11="#74cd68" # EXEC
export COLOR_12="#ffb929" #
export COLOR_13="#23d7d7" # FOLDER
export COLOR_14="#ff37ff" #
export COLOR_15="#00ede1" #
export COLOR_16="#ffffff" #
export BACKGROUND_COLOR="#2d3743" # Background Color
export FOREGROUND_COLOR="#e1e1e0" # Text
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor
export PROFILE_NAME="Misterioso"
# =============================================================== #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#000000" # HOST
export COLOR_02="#b87a7a" # SYNTAX_STRING
export COLOR_03="#7ab87a" # COMMAND
export COLOR_04="#b8b87a" # COMMAND_COLOR2
export COLOR_05="#7a7ab8" # PATH
export COLOR_06="#b87ab8" # SYNTAX_VAR
export COLOR_07="#7ab8b8" # PROMP
export COLOR_08="#d9d9d9" #
export COLOR_09="#262626" #
export COLOR_10="#dbbdbd" # COMMAND_ERROR
export COLOR_11="#bddbbd" # EXEC
export COLOR_12="#dbdbbd" #
export COLOR_13="#bdbddb" # FOLDER
export COLOR_14="#dbbddb" #
export COLOR_15="#bddbdb" #
export COLOR_16="#ffffff" #
export BACKGROUND_COLOR="#0d1926" # Background Color
export FOREGROUND_COLOR="#d9e6f2" # Text
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor
export PROFILE_NAME="Miu"
# =============================================================== #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#1b1d1e" # HOST
export COLOR_02="#7325FA" # SYNTAX_STRING
export COLOR_03="#23E298" # COMMAND
export COLOR_04="#60D4DF" # COMMAND_COLOR2
export COLOR_05="#D08010" # PATH
export COLOR_06="#FF0087" # SYNTAX_VAR
export COLOR_07="#D0A843" # PROMP
export COLOR_08="#BBBBBB" #
export COLOR_09="#555555" #
export COLOR_10="#9D66F6" # COMMAND_ERROR
export COLOR_11="#5FE0B1" # EXEC
export COLOR_12="#6DF2FF" #
export COLOR_13="#FFAF00" # FOLDER
export COLOR_14="#FF87AF" #
export COLOR_15="#FFCE51" #
export COLOR_16="#FFFFFF" #
export BACKGROUND_COLOR="#1b1d1e" # Background Color
export FOREGROUND_COLOR="#BBBBBB" # Text
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor
export PROFILE_NAME="Molokai"
# =============================================================== #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#351b0e" # HOST
export COLOR_02="#9b291c" # SYNTAX_STRING
export COLOR_03="#636232" # COMMAND
export COLOR_04="#c36e28" # COMMAND_COLOR2
export COLOR_05="#515c5d" # PATH
export COLOR_06="#9b1d29" # SYNTAX_VAR
export COLOR_07="#588056" # PROMP
export COLOR_08="#f7d75c" #
export COLOR_09="#874228" #
export COLOR_10="#ff4331" # COMMAND_ERROR
export COLOR_11="#b4b264" # EXEC
export COLOR_12="#ff9566" #
export COLOR_13="#9eb2b4" # FOLDER
export COLOR_14="#ff5b6a" #
export COLOR_15="#8acd8f" #
export COLOR_16="#ffe598" #
export BACKGROUND_COLOR="#120b0d" # Background Color
export FOREGROUND_COLOR="#f7d66a" # Text
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor
export PROFILE_NAME="Mona Lisa"
# =============================================================== #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#402500" # Black
export COLOR_02="#FF9400" # Red
export COLOR_03="#FF9400" # Green
export COLOR_04="#FF9400" # Yellow
export COLOR_05="#FF9400" # Blue
export COLOR_06="#FF9400" # Magenta
export COLOR_07="#FF9400" # Cyan
export COLOR_08="#FF9400" # Light gray
export COLOR_09="#FF9400" # Dark gray
export COLOR_10="#FF9400" # Light Red
export COLOR_11="#FF9400" # Light Green
export COLOR_12="#FF9400" # Light Yellow
export COLOR_13="#FF9400" # Light Blue
export COLOR_14="#FF9400" # Light Magenta
export COLOR_15="#FF9400" # Light Cyan
export COLOR_16="#FF9400" # White
export BACKGROUND_COLOR="#2B1900" # Background Color
export FOREGROUND_COLOR="#FF9400" # Foreground Color (text)
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor color
export PROFILE_NAME="mono-amber"
# =============================================================== #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#003340" # Black
export COLOR_02="#00CCFF" # Red
export COLOR_03="#00CCFF" # Green
export COLOR_04="#00CCFF" # Yellow
export COLOR_05="#00CCFF" # Blue
export COLOR_06="#00CCFF" # Magenta
export COLOR_07="#00CCFF" # Cyan
export COLOR_08="#00CCFF" # Light gray
export COLOR_09="#00CCFF" # Dark gray
export COLOR_10="#00CCFF" # Light Red
export COLOR_11="#00CCFF" # Light Green
export COLOR_12="#00CCFF" # Light Yellow
export COLOR_13="#00CCFF" # Light Blue
export COLOR_14="#00CCFF" # Light Magenta
export COLOR_15="#00CCFF" # Light Cyan
export COLOR_16="#00CCFF" # White
export BACKGROUND_COLOR="#00222B" # Background Color
export FOREGROUND_COLOR="#00CCFF" # Foreground Color (text)
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor color
export PROFILE_NAME="mono-cyan"
# =============================================================== #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#034000" # Black
export COLOR_02="#0BFF00" # Red
export COLOR_03="#0BFF00" # Green
export COLOR_04="#0BFF00" # Yellow
export COLOR_05="#0BFF00" # Blue
export COLOR_06="#0BFF00" # Magenta
export COLOR_07="#0BFF00" # Cyan
export COLOR_08="#0BFF00" # Light gray
export COLOR_09="#0BFF00" # Dark gray
export COLOR_10="#0BFF00" # Light Red
export COLOR_11="#0BFF00" # Light Green
export COLOR_12="#0BFF00" # Light Yellow
export COLOR_13="#0BFF00" # Light Blue
export COLOR_14="#0BFF00" # Light Magenta
export COLOR_15="#0BFF00" # Light Cyan
export COLOR_16="#0BFF00" # White
export BACKGROUND_COLOR="#022B00" # Background Color
export FOREGROUND_COLOR="#0BFF00" # Foreground Color (text)
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor color
export PROFILE_NAME="mono-green"
# =============================================================== #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#401200" # Black
export COLOR_02="#FF3600" # Red
export COLOR_03="#FF3600" # Green
export COLOR_04="#FF3600" # Yellow
export COLOR_05="#FF3600" # Blue
export COLOR_06="#FF3600" # Magenta
export COLOR_07="#FF3600" # Cyan
export COLOR_08="#FF3600" # Light gray
export COLOR_09="#FF3600" # Dark gray
export COLOR_10="#FF3600" # Light Red
export COLOR_11="#FF3600" # Light Green
export COLOR_12="#FF3600" # Light Yellow
export COLOR_13="#FF3600" # Light Blue
export COLOR_14="#FF3600" # Light Magenta
export COLOR_15="#FF3600" # Light Cyan
export COLOR_16="#FF3600" # White
export BACKGROUND_COLOR="#2B0C00" # Background Color
export FOREGROUND_COLOR="#FF3600" # Foreground Color (text)
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor color
export PROFILE_NAME="mono-red"
# =============================================================== #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#3B3B3B" # Black
export COLOR_02="#FAFAFA" # Red
export COLOR_03="#FAFAFA" # Green
export COLOR_04="#FAFAFA" # Yellow
export COLOR_05="#FAFAFA" # Blue
export COLOR_06="#FAFAFA" # Magenta
export COLOR_07="#FAFAFA" # Cyan
export COLOR_08="#FAFAFA" # Light gray
export COLOR_09="#FAFAFA" # Dark gray
export COLOR_10="#FAFAFA" # Light Red
export COLOR_11="#FAFAFA" # Light Green
export COLOR_12="#FAFAFA" # Light Yellow
export COLOR_13="#FAFAFA" # Light Blue
export COLOR_14="#FAFAFA" # Light Magenta
export COLOR_15="#FAFAFA" # Light Cyan
export COLOR_16="#FAFAFA" # White
export BACKGROUND_COLOR="#262626" # Background Color
export FOREGROUND_COLOR="#FAFAFA" # Foreground Color (text)
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor color
export PROFILE_NAME="mono-white"
# =============================================================== #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#403500" # Black
export COLOR_02="#FFD300" # Red
export COLOR_03="#FFD300" # Green
export COLOR_04="#FFD300" # Yellow
export COLOR_05="#FFD300" # Blue
export COLOR_06="#FFD300" # Magenta
export COLOR_07="#FFD300" # Cyan
export COLOR_08="#FFD300" # Light gray
export COLOR_09="#FFD300" # Dark gray
export COLOR_10="#FFD300" # Light Red
export COLOR_11="#FFD300" # Light Green
export COLOR_12="#FFD300" # Light Yellow
export COLOR_13="#FFD300" # Light Blue
export COLOR_14="#FFD300" # Light Magenta
export COLOR_15="#FFD300" # Light Cyan
export COLOR_16="#FFD300" # White
export BACKGROUND_COLOR="#2B2400" # Background Color
export FOREGROUND_COLOR="#FFD300" # Foreground Color (text)
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor color
export PROFILE_NAME="mono-yellow"
# =============================================================== #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#75715e" # HOST
export COLOR_02="#f92672" # SYNTAX_STRING
export COLOR_03="#a6e22e" # COMMAND
export COLOR_04="#f4bf75" # COMMAND_COLOR2
export COLOR_05="#66d9ef" # PATH
export COLOR_06="#ae81ff" # SYNTAX_VAR
export COLOR_07="#2AA198" # PROMP
export COLOR_08="#f9f8f5" #
export COLOR_09="#272822" #
export COLOR_10="#f92672" # COMMAND_ERROR
export COLOR_11="#a6e22e" # EXEC
export COLOR_12="#f4bf75" #
export COLOR_13="#66d9ef" # FOLDER
export COLOR_14="#ae81ff" #
export COLOR_15="#2AA198" #
export COLOR_16="#f8f8f2" #
export BACKGROUND_COLOR="#272822" # Background Color
export FOREGROUND_COLOR="#f8f8f2" # Text
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor
export PROFILE_NAME="Monokai Dark"
# =============================================================== #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#3E3838" # HOST, Black
export COLOR_02="#DF7484" # SYNTAX_STRING, Red
export COLOR_03="#BBD87E" # COMMAND, Green
export COLOR_04="#EDCE73" # COMMAND_COLOR2, Yellow
export COLOR_05="#DC9373" # PATH, Magenta
export COLOR_06="#A9AAE9" # SYNTAX_VAR, Blue
export COLOR_07="#A4D7CC" # PROMP, Cyan
export COLOR_08="#FBF2F3" # White
export COLOR_09="#70696A" # Bright Black
export COLOR_10="#DF7484" # COMMAND_ERROR, Bright Red
export COLOR_11="#BBD87E" # EXEC, Bright Green
export COLOR_12="#EDCE73" # Bright Yellow
export COLOR_13="#DC9373" # FOLDER, Magenta
export COLOR_14="#A9AAE9" # Bright Bright Blue
export COLOR_15="#A4D7CC" # Bright Cyan
export COLOR_16="#FBF2F3" # Bright White
export BACKGROUND_COLOR="#3E3838" # Background Color
export FOREGROUND_COLOR="#FBF2F3" # Text
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor
export PROFILE_NAME="Monokai Pro Ristretto"
# =============================================================== #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#363537" # Dark Gray
export COLOR_02="#FF6188" # Monokai Pro Red
export COLOR_03="#A9DC76" # Monokai Pro Green
export COLOR_04="#FFD866" # Monokai Pro Yellow
export COLOR_05="#FC9867" # Monokai Pro Orange
export COLOR_06="#AB9DF2" # Monokai Pro Magenta
export COLOR_07="#78DCE8" # Monokai Pro Cyan
export COLOR_08="#FDF9F3" # Light Gray
export COLOR_09="#908E8F" # Dark Gray
export COLOR_10="#FF6188" # Monokai Pro Red
export COLOR_11="#A9DC76" # Monokai Pro Green
export COLOR_12="#FFD866" # Monokai Pro Yellow
export COLOR_13="#FC9867" # Monokai Pro Orange
export COLOR_14="#AB9DF2" # Monokai Pro Magenta
export COLOR_15="#78DCE8" # Monokai Pro Cyan
export COLOR_16="#FDF9F3" # Light Gray
export BACKGROUND_COLOR="#363537" # Background Color
export FOREGROUND_COLOR="#FDF9F3" # Foreground Color (text)
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor color
export PROFILE_NAME="Monokai Pro"
# =============================================================== #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#1a1a1a" # HOST
export COLOR_02="#f4005f" # SYNTAX_STRING
export COLOR_03="#98e024" # COMMAND
export COLOR_04="#fa8419" # COMMAND_COLOR2
export COLOR_05="#9d65ff" # PATH
export COLOR_06="#f4005f" # SYNTAX_VAR
export COLOR_07="#58d1eb" # PROMP
export COLOR_08="#c4c5b5" #
export COLOR_09="#625e4c" #
export COLOR_10="#f4005f" # COMMAND_ERROR
export COLOR_11="#98e024" # EXEC
export COLOR_12="#e0d561" #
export COLOR_13="#9d65ff" # FOLDER
export COLOR_14="#f4005f" #
export COLOR_15="#58d1eb" #
export COLOR_16="#f6f6ef" #
export BACKGROUND_COLOR="#1a1a1a" # Background Color
export FOREGROUND_COLOR="#c4c5b5" # Text
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor
export PROFILE_NAME="Monokai Soda"
# =============================================================== #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#383838" # HOST
export COLOR_02="#a95551" # SYNTAX_STRING
export COLOR_03="#666666" # COMMAND
export COLOR_04="#a98051" # COMMAND_COLOR2
export COLOR_05="#657d3e" # PATH
export COLOR_06="#767676" # SYNTAX_VAR
export COLOR_07="#c9c9c9" # PROMP
export COLOR_08="#d0b8a3" #
export COLOR_09="#474747" #
export COLOR_10="#a97775" # COMMAND_ERROR
export COLOR_11="#8c8c8c" # EXEC
export COLOR_12="#a99175" #
export COLOR_13="#98bd5e" # FOLDER
export COLOR_14="#a3a3a3" #
export COLOR_15="#dcdcdc" #
export COLOR_16="#d8c8bb" #
export BACKGROUND_COLOR="#222222" # Background Color
export FOREGROUND_COLOR="#a0a0a0" # Text
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor
export PROFILE_NAME="N0tch2k"
# =============================================================== #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#20242d" # Black
export COLOR_02="#FF8E8E" # Red
export COLOR_03="#7EFDD0" # Green
export COLOR_04="#FCAD3F" # Yellow
export COLOR_05="#69B4F9" # Blue
export COLOR_06="#DD92F6" # Magenta
export COLOR_07="#8CE8ff" # Cyan
export COLOR_08="#C9CCCD" # Light gray
export COLOR_09="#20242d" # Dark gray
export COLOR_10="#FF8E8E" # Light Red
export COLOR_11="#7EFDD0" # Light Green
export COLOR_12="#FCAD3F" # Light Yellow
export COLOR_13="#69B4F9" # Light Blue
export COLOR_14="#DD92F6" # Light Magenta
export COLOR_15="#8CE8ff" # Light Cyan
export COLOR_16="#C9CCCD" # White
export BACKGROUND_COLOR="#20242d" # Background Color
export FOREGROUND_COLOR="#C7C8FF" # Foreground Color (text)
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor color
export PROFILE_NAME="neon-night"
# =============================================================== #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#000000" # HOST
export COLOR_02="#800000" # SYNTAX_STRING
export COLOR_03="#61ce3c" # COMMAND
export COLOR_04="#fbde2d" # COMMAND_COLOR2
export COLOR_05="#253b76" # PATH
export COLOR_06="#ff0080" # SYNTAX_VAR
export COLOR_07="#8da6ce" # PROMP
export COLOR_08="#f8f8f8" #
export COLOR_09="#000000" #
export COLOR_10="#800000" # COMMAND_ERROR
export COLOR_11="#61ce3c" # EXEC
export COLOR_12="#fbde2d" #
export COLOR_13="#253b76" # FOLDER
export COLOR_14="#ff0080" #
export COLOR_15="#8da6ce" #
export COLOR_16="#f8f8f8" #
export BACKGROUND_COLOR="#271f19" # Background Color
export FOREGROUND_COLOR="#ffffff" # Text
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor
export PROFILE_NAME="Neopolitan"
# =============================================================== #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

Some files were not shown because too many files have changed in this diff Show More