mirror of
https://github.com/Mayccoll/Gogh.git
synced 2023-08-10 21:12:46 +03:00
Compare commits
3 Commits
4d50d510cd
...
52a65b7df4
Author | SHA1 | Date | |
---|---|---|---|
|
52a65b7df4 | ||
|
6ac23a605f | ||
|
e319952bf5 |
File diff suppressed because one or more lines are too long
1
gogh.sh
1
gogh.sh
@ -21,6 +21,7 @@ declare -a THEMES=(
|
||||
'adventure-time.sh'
|
||||
'afterglow.sh'
|
||||
'alien-blood.sh'
|
||||
'apprentice.sh'
|
||||
'argonaut.sh'
|
||||
'arthur.sh'
|
||||
'atom.sh'
|
||||
|
49
installs/apprentice.sh
Executable file
49
installs/apprentice.sh
Executable file
@ -0,0 +1,49 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
export PROFILE_NAME="Apprentice"
|
||||
|
||||
export COLOR_01="#1C1C1C" # Black (Host)
|
||||
export COLOR_02="#AF5F5F" # Red (Syntax string)
|
||||
export COLOR_03="#5F875F" # Green (Command)
|
||||
export COLOR_04="#87875F" # Yellow (Command second)
|
||||
export COLOR_05="#5F87AF" # Blue (Path)
|
||||
export COLOR_06="#5F5F87" # Magenta (Syntax var)
|
||||
export COLOR_07="#5F8787" # Cyan (Prompt)
|
||||
export COLOR_08="#6C6C6C" # White
|
||||
|
||||
export COLOR_09="#444444" # Bright Black
|
||||
export COLOR_10="#FF8700" # Bright Red (Command error)
|
||||
export COLOR_11="#87AF87" # Bright Green (Exec)
|
||||
export COLOR_12="#FFFFAF" # Bright Yellow
|
||||
export COLOR_13="#8FAFD7" # Bright Blue (Folder)
|
||||
export COLOR_14="#8787AF" # Bright Magenta
|
||||
export COLOR_15="#5FAFAF" # Bright Cyan
|
||||
export COLOR_16="#FFFFFF" # Bright White
|
||||
|
||||
export BACKGROUND_COLOR="#262626" # Background
|
||||
export FOREGROUND_COLOR="#BCBCBC" # Foreground (Text)
|
||||
|
||||
export CURSOR_COLOR="#BCBCBC" # Cursor
|
||||
|
||||
# | ===========================================================================
|
||||
# | 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
|
1
json/apprentice.json
Normal file
1
json/apprentice.json
Normal file
@ -0,0 +1 @@
|
||||
{"color_01": "#1C1C1C", "color_02": "#AF5F5F", "color_03": "#5F875F", "color_04": "#87875F", "color_05": "#5F87AF", "color_06": "#5F5F87", "color_07": "#5F8787", "color_08": "#6C6C6C", "color_09": "#444444", "color_10": "#FF8700", "color_11": "#87AF87", "color_12": "#FFFFAF", "color_13": "#8FAFD7", "color_14": "#8787AF", "color_15": "#5FAFAF", "color_16": "#FFFFFF", "name": "Apprentice", "foreground": "#BCBCBC", "background": "#262626", "cursor": "#BCBCBC", "hash": "1dbf1d6c6a28e9877ee413bde7ecd969a4c9362de28fedf672d4ac180296cd40"}
|
28
themes/Apprentice.yml
Normal file
28
themes/Apprentice.yml
Normal file
@ -0,0 +1,28 @@
|
||||
---
|
||||
|
||||
# https://romainl.github.io/Apprentice/
|
||||
|
||||
name: 'Apprentice'
|
||||
|
||||
color_01: '#1C1C1C' # Black (Host)
|
||||
color_02: '#AF5F5F' # Red (Syntax string)
|
||||
color_03: '#5F875F' # Green (Command)
|
||||
color_04: '#87875F' # Yellow (Command second)
|
||||
color_05: '#5F87AF' # Blue (Path)
|
||||
color_06: '#5F5F87' # Magenta (Syntax var)
|
||||
color_07: '#5F8787' # Cyan (Prompt)
|
||||
color_08: '#6C6C6C' # White
|
||||
|
||||
color_09: '#444444' # Bright Black
|
||||
color_10: '#FF8700' # Bright Red (Command error)
|
||||
color_11: '#87AF87' # Bright Green (Exec)
|
||||
color_12: '#FFFFAF' # Bright Yellow
|
||||
color_13: '#8FAFD7' # Bright Blue (Folder)
|
||||
color_14: '#8787AF' # Bright Magenta
|
||||
color_15: '#5FAFAF' # Bright Cyan
|
||||
color_16: '#FFFFFF' # Bright White
|
||||
|
||||
background: '#262626' # Background
|
||||
foreground: '#BCBCBC' # Foreground (Text)
|
||||
|
||||
cursor: '#BCBCBC' # Cursor
|
Loading…
Reference in New Issue
Block a user