Compare commits

...

5 Commits

Author SHA1 Message Date
Mgldvd fb1f804e93
Merge pull request #376 from OliverW10/readme-install
Fix readme manual install directory of install scripts
2023-04-06 10:49:16 -05:00
OliverW10 0742e0a394 fix readme manual install install dir 2023-04-05 16:21:45 +10:00
github-actions[bot] ec0ba4a900 ------- Generate Themes ------- 2023-04-03 03:56:40 +00:00
Mgldvd 48e0c983e9
Merge pull request #375 from fernandovmacedo/master
Add Gruvbox Material (dark medium) theme
2023-04-02 22:56:10 -05:00
fernando c84a738185 Add Gruvbox Material (dark medium) theme 2023-04-02 21:26:59 -03:00
6 changed files with 78 additions and 2 deletions

View File

@ -111,8 +111,8 @@ export TERMINAL=gnome-terminal
pip install -r requirements.txt
export TERMINAL=alacritty
# Enter themes dir
cd themes
# Enter theme installs dir
cd installs
# install themes
./atom.sh

Binary file not shown.

View File

@ -98,6 +98,7 @@ declare -a THEMES=(
'grape.sh'
'grass.sh'
'gruvbox-dark.sh'
'gruvbox-material.sh'
'gruvbox.sh'
'hardcore.sh'
'harper.sh'

49
installs/gruvbox-material.sh Executable file
View File

@ -0,0 +1,49 @@
#!/usr/bin/env bash
export PROFILE_NAME="Gruvbox Material"
export COLOR_01="#3C3836" # Black (Host)
export COLOR_02="#EA6962" # Red (Syntax string)
export COLOR_03="#A9B665" # Green (Command)
export COLOR_04="#D8A657" # Yellow (Command second)
export COLOR_05="#7DAEA3" # Blue (Path)
export COLOR_06="#D3869B" # Magenta (Syntax var)
export COLOR_07="#89B482" # Cyan (Prompt)
export COLOR_08="#D4BE98" # White
export COLOR_09="#3C3836" # Bright Black
export COLOR_10="#EA6962" # Bright Red (Command error)
export COLOR_11="#A9B665" # Bright Green (Exec)
export COLOR_12="#D8A657" # Bright Yellow
export COLOR_13="#7DAEA3" # Bright Blue (Folder)
export COLOR_14="#D3869B" # Bright Magenta
export COLOR_15="#89B482" # Bright Cyan
export COLOR_16="#D4BE98" # Bright White
export BACKGROUND_COLOR="#282828" # Background
export FOREGROUND_COLOR="#D4BE98" # Foreground (Text)
export CURSOR_COLOR="#D4BE98" # 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

View File

@ -0,0 +1 @@
{"color_01": "#3C3836", "color_02": "#EA6962", "color_03": "#A9B665", "color_04": "#D8A657", "color_05": "#7DAEA3", "color_06": "#D3869B", "color_07": "#89B482", "color_08": "#D4BE98", "color_09": "#3C3836", "color_10": "#EA6962", "color_11": "#A9B665", "color_12": "#D8A657", "color_13": "#7DAEA3", "color_14": "#D3869B", "color_15": "#89B482", "color_16": "#D4BE98", "name": "Gruvbox Material", "foreground": "#D4BE98", "background": "#282828", "cursor": "#D4BE98", "hash": "26c642c2300b424f1da262f6249fc9a50bef6b2fa9ee7c7e7d34cfdfc8b6eec4"}

View File

@ -0,0 +1,25 @@
---
name: 'Gruvbox Material'
color_01: '#3C3836' # Black (Host)
color_02: '#EA6962' # Red (Syntax string)
color_03: '#A9B665' # Green (Command)
color_04: '#D8A657' # Yellow (Command second)
color_05: '#7DAEA3' # Blue (Path)
color_06: '#D3869B' # Magenta (Syntax var)
color_07: '#89B482' # Cyan (Prompt)
color_08: '#D4BE98' # White
color_09: '#3C3836' # Bright Black
color_10: '#EA6962' # Bright Red (Command error)
color_11: '#A9B665' # Bright Green (Exec)
color_12: '#D8A657' # Bright Yellow
color_13: '#7DAEA3' # Bright Blue (Folder)
color_14: '#D3869B' # Bright Magenta
color_15: '#89B482' # Bright Cyan
color_16: '#D4BE98' # Bright White
background: '#282828' # Background
foreground: '#D4BE98' # Foreground (Text)
cursor: '#D4BE98' # Cursor