1
0
mirror of https://github.com/Mayccoll/Gogh.git synced 2023-08-10 21:12:46 +03:00

20 Commits
v225 ... v232

Author SHA1 Message Date
github-actions[bot]
f8b6173d18 ------- Generate themes.json ------- 2022-10-17 16:35:30 +00:00
Mgldvd
c79eefb259 KANAGAWA 2022-10-17 11:34:07 -05:00
Mgldvd
cabd70c35e Merge pull request #355 from jeffwindsor/master
ported from rebelot/kanagawa.nvim
2022-10-17 10:52:34 -05:00
Jeff Windsor
7953b6a65b ported from rebelot/kanagawa.nvim 2022-10-10 21:47:31 -07:00
Mgldvd
b954744410 Downgrade axios version for gh-pages 2022-10-07 13:15:27 -05:00
github-actions[bot]
a2a010a686 ------- Generate themes.json ------- 2022-10-07 18:03:16 +00:00
Mgldvd
63cc19422f Add Breeze, Breath, Breath Light, and Breath Silverfox 2022-10-07 13:02:48 -05:00
Mgldvd
cad35bb076 Merge pull request #354 from deniandriancode/deniandriancode
Add Breeze, Breath, Breath Light, and Breath Silverfox colorschemes
2022-10-07 13:00:28 -05:00
deniandriancode
724d50780e Add Breeze, Breath, Breath Light, and Breath Silverfox colorschemes 2022-10-04 21:03:58 +07:00
Mgldvd
941a2076ee Merge pull request #350 from shagohead/master
Fix TERM checking for kitty under Darwin
2022-07-30 13:25:39 -05:00
shagohead
e777605f33 Fix TERM checking for kitty under Darwin 2022-07-30 12:08:20 +03:00
github-actions[bot]
6af0b3666c ------- Generate themes.json ------- 2022-07-21 00:50:46 +00:00
Mgldvd
34ac8a5533 add SynthWave Alpha to README 2022-07-20 19:50:02 -05:00
Mgldvd
a99e39e649 add synthwave-alpha.sh to gogh list 2022-07-20 19:48:49 -05:00
Mgldvd
ad5e0bc6d9 Merge pull request #347 from vikpe/master
Add Synthwave Alpha theme
2022-07-20 19:47:21 -05:00
Viktor Persson
8823942b23 Add Synthwave Alpha theme 2022-07-20 21:58:40 +02:00
Mgldvd
3fb6e80493 ✏️ Fix typo 2022-06-27 11:48:39 -05:00
Mgldvd
7445708d00 Add Stargazers over time graph 2022-06-26 13:09:21 -05:00
Mayccoll
83bb1f6a94 Merge pull request #341 from yees7/master
Update README.md
2022-06-18 17:36:11 -05:00
yees7
403271c8f5 Update README.md 2022-06-18 23:04:18 +10:00
13 changed files with 360 additions and 18 deletions

View File

@@ -134,11 +134,13 @@ If you want to create your own color scheme or contribute to the project, [start
- [Srcery](https://github.com/roosta/vim-srcery) by [Daniel Berg](https://github.com/roosta)
- [Summer Pop](https://github.com/guillermoap/Gogh) by [Guillermo Aguirre](https://github.com/guillermoap)
- [SynthWave '84 ](https://github.com/robb0wen/synthwave-vscode)
- [SynthWave Alpha](https://github.com/vikpe/synthwave-alpha)
- [Terminal Sexy](https://terminal.sexy) by [George Czabania](https://github.com/stayradiated)
- [Tilix](https://github.com/storm119/Tilix-Themes)
- [Tokyo Night](https://github.com/enkia/tokyo-night-vscode-theme)
- [Tomorrow color theme set](https://github.com/chriskempson/tomorrow-theme) by [Chris Kempson](https://github.com/chriskempson)
- Material theme by [Mitchel van Eijgen](https://gist.github.com/mvaneijgen/4c56701215847dd5ddcf) and [Liu Xinan](https://gist.github.com/xinan/ca2b82fef6aaa0d1e099)
- [KANAGAWA.nvim](https://github.com/rebelot/kanagawa.nvim)
<br/>
<br/>
@@ -162,17 +164,13 @@ There is no blue without yellow and without orange.
## Author
- Miguel D. Quintero - [Lanet.co](https://lanet.co)
<form action="https://www.paypal.com/donate" method="post" target="_top">
<input type="hidden" name="hosted_button_id" value="UCTBRYLUVKQ32" />
<input type="image" src="https://www.paypalobjects.com/en_US/i/btn/btn_donate_LG.gif" border="0" name="submit" title="PayPal - The safer, easier way to pay online!" alt="Donate with PayPal button" />
<img alt="" border="0" src="https://www.paypal.com/en_CO/i/scr/pixel.gif" width="1" height="1" />
</form>
<br/>
<br/>
## Mentions
[💵 Buy me a coffee - paypal](https://paypal.me/mgldvd?country.x=CO&locale.x=es_XC)
## 📣 Mentions
- [VSCode Theme](https://marketplace.visualstudio.com/items?itemName=Avetis.gogh-theme)
- [Awesome-Shell](https://github.com/alebcay/awesome-shell)
@@ -189,6 +187,13 @@ In your terminal type:
bash tools/generate.sh
```
this generates a json file located at `gh-pages/data/themes.json`
This generates a json file located at `gh-pages/data/themes.json`
Original script source: https://gist.github.com/rapgru/09b449285231d18f4e4536c5f48fc927
## 🌟 Stargazers over time
[![Stargazers over time](https://starchart.cc/Gogh-Co/Gogh.svg)](https://starchart.cc/Gogh-Co/Gogh)
orginal script source: https://gist.github.com/rapgru/09b449285231d18f4e4536c5f48fc927

View File

@@ -53,12 +53,12 @@ if [[ -z "${TERMINAL:-}" ]]; then
# | Check for the terminal name (depening on os)
# | ===========================================
OS="$(uname)"
if [[ "$OS" = "Darwin" ]]; then
if [[ "$TERM" = "xterm-kitty" ]]; then
TERMINAL="kitty"
elif [[ "$OS" = "Darwin" ]]; then
TERMINAL=$TERM_PROGRAM
elif [[ "${OS#CYGWIN}" != "${OS}" ]]; then
TERMINAL="mintty"
elif [[ "$TERM" = "xterm-kitty" ]]; then
TERMINAL="kitty"
else
# |
# | Depending on how the script was invoked, we need
@@ -1010,7 +1010,7 @@ case "${TERMINAL}" in
" kitty" \
" konsole" \
"" \
"If you believe you have recieved this message in error," \
"If you believe you have received this message in error," \
"try manually setting \`TERMINAL', hint: ps -h -o comm -p \$PPID"
exit 1
;;

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -269,7 +269,7 @@
<script src="https://cdn.jsdelivr.net/npm/shufflejs@5.3.0/dist/shuffle.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/axios@0.27.2/dist/axios.min.js"></script>
<script src=https://buttons.github.io/buttons.js async="" defer="" id=github-bjs></script>

View File

@@ -37,6 +37,10 @@ declare -a THEMES=(
'bluloco-light.sh'
'bluloco-zsh-light.sh'
'borland.sh'
'breath-light.sh'
'breath-silverfox.sh'
'breath.sh'
'breeze.sh'
'broadcast.sh'
'brogrammer.sh'
'c64.sh'
@@ -108,6 +112,7 @@ declare -a THEMES=(
'japanesque.sh'
'jellybeans.sh'
'jup.sh'
'kanagawa.sh'
'kibble.sh'
'kokuban.sh'
'laserwave.sh'
@@ -209,6 +214,7 @@ declare -a THEMES=(
'sweet-terminal.sh'
'symphonic.sh'
'synthwave.sh'
'synthwave-alpha.sh'
'teerb.sh'
'tender.sh'
'terminal-basic.sh'

View File

@@ -4,6 +4,7 @@
"description": "",
"main": "",
"scripts": {
"dev": "gulp dev",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",

55
themes/breath-light.sh Executable file
View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#E8E8E8" # HOST
export COLOR_02="#ED1515" # SYNTAX_STRING
export COLOR_03="#C0392B" # COMMAND
export COLOR_04="#F67400" # COMMAND_COLOR2
export COLOR_05="#1D99F3" # PATH
export COLOR_06="#9B59B6" # SYNTAX_VAR
export COLOR_07="#1ABC9C" # PROMP
export COLOR_08="#FCFCFC" #
export COLOR_09="#7F8C8D" #
export COLOR_10="#C0392B" # COMMAND_ERROR
export COLOR_11="#55A649" # EXEC
export COLOR_12="#FDBC4B" #
export COLOR_13="#3DAEE9" # FOLDER
export COLOR_14="#8E44AD" #
export COLOR_15="#16A085" #
export COLOR_16="#FFFFFF" #
export BACKGROUND_COLOR="#E8E8E8" # Background Color
export FOREGROUND_COLOR="#292F34" # Foreground Color (text)
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor color
export PROFILE_NAME="Breath 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

55
themes/breath-silverfox.sh Executable file
View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#1e2229" # HOST
export COLOR_02="#ed1515" # SYNTAX_STRING
export COLOR_03="#44853a" # COMMAND
export COLOR_04="#f67400" # COMMAND_COLOR2
export COLOR_05="#1d99f3" # PATH
export COLOR_06="#9b59b6" # SYNTAX_VAR
export COLOR_07="#1abc9c" # PROMP
export COLOR_08="#fcfcfc" #
export COLOR_09="#7f8c8d" #
export COLOR_10="#c0392b" # COMMAND_ERROR
export COLOR_11="#55a649" # EXEC
export COLOR_12="#fdbc4b" #
export COLOR_13="#3daee9" # FOLDER
export COLOR_14="#8e44ad" #
export COLOR_15="#16a085" #
export COLOR_16="#ffffff" #
export BACKGROUND_COLOR="#1e2229" # Background Color
export FOREGROUND_COLOR="#bbbbbb" # Foreground Color (text)
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor color
export PROFILE_NAME="Breath Silverfox"
# =============================================================== #
# =============================================================== #
# | 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

55
themes/breath.sh Executable file
View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#1E2229" # HOST
export COLOR_02="#ED1515" # SYNTAX_STRING
export COLOR_03="#44853A" # COMMAND
export COLOR_04="#F67400" # COMMAND_COLOR2
export COLOR_05="#1D99F3" # PATH
export COLOR_06="#9B59B6" # SYNTAX_VAR
export COLOR_07="#1ABC9C" # PROMP
export COLOR_08="#FCFCFC" #
export COLOR_09="#7F8C8D" #
export COLOR_10="#C0392B" # COMMAND_ERROR
export COLOR_11="#55A649" # EXEC
export COLOR_12="#FDBC4B" #
export COLOR_13="#3DAEE9" # FOLDER
export COLOR_14="#8E44AD" #
export COLOR_15="#16A085" #
export COLOR_16="#FFFFFF" #
export BACKGROUND_COLOR="#1E2229" # Background Color
export FOREGROUND_COLOR="#17A88B" # Foreground Color (text)
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor color
export PROFILE_NAME="Breath"
# =============================================================== #
# =============================================================== #
# | 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

55
themes/breeze.sh Executable file
View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#232627" # HOST
export COLOR_02="#ED1515" # SYNTAX_STRING
export COLOR_03="#11D116" # COMMAND
export COLOR_04="#F67400" # COMMAND_COLOR2
export COLOR_05="#1D99F3" # PATH
export COLOR_06="#9B59B6" # SYNTAX_VAR
export COLOR_07="#1ABC9C" # PROMP
export COLOR_08="#FCFCFC" #
export COLOR_09="#7F8C8D" #
export COLOR_10="#C0392B" # COMMAND_ERROR
export COLOR_11="#1CDC9A" # EXEC
export COLOR_12="#FDBC4B" #
export COLOR_13="#3DAEE9" # FOLDER
export COLOR_14="#8E44AD" #
export COLOR_15="#16A085" #
export COLOR_16="#FFFFFF" #
export BACKGROUND_COLOR="#232627" # Background Color
export FOREGROUND_COLOR="#FCFCFC" # Foreground Color (text)
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor color
export PROFILE_NAME="Breeze"
# =============================================================== #
# =============================================================== #
# | 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

55
themes/kanagawa.sh Executable file
View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#090618" # Black
export COLOR_02="#C34043" # Red
export COLOR_03="#76946A" # Green
export COLOR_04="#C0A36E" # Yellow
export COLOR_05="#7E9CD8" # Blue
export COLOR_06="#957FB8" # Magenta
export COLOR_07="#6A9589" # Cyan
export COLOR_08="#DCD7BA" # Light gray
export COLOR_09="#727169" # Dark gray
export COLOR_10="#E82424" # Light Red
export COLOR_11="#98BB6C" # Light Green
export COLOR_12="#E6C384" # Light Yellow
export COLOR_13="#7FB4CA" # Light Blue
export COLOR_14="#938AA9" # Light Magenta
export COLOR_15="#7AA89F" # Light Cyan
export COLOR_16="#C8C093" # White
export BACKGROUND_COLOR="#1F1F28" # Background Color
export FOREGROUND_COLOR="#DCD7BA" # Foreground Color (text)
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor color
export PROFILE_NAME="kanagawa"
# =============================================================== #
# =============================================================== #
# | 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

55
themes/synthwave-alpha.sh Normal file
View File

@@ -0,0 +1,55 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#241b30" # Black
export COLOR_02="#9a0048" # Red
export COLOR_03="#00986c" # Green
export COLOR_04="#adad3e" # Yellow
export COLOR_05="#6e29ad" # Blue
export COLOR_06="#b300ad" # Magenta
export COLOR_07="#00b0b1" # Cyan
export COLOR_08="#b9b1bc" # Light gray
export COLOR_09="#7f7094" # Dark gray
export COLOR_10="#e60a70" # Light Red
export COLOR_11="#0ae4a4" # Light Green
export COLOR_12="#f9f972" # Light Yellow
export COLOR_13="#aa54f9" # Light Blue
export COLOR_14="#ff00f6" # Light Magenta
export COLOR_15="#00fbfd" # Light Cyan
export COLOR_16="#f2f2e3" # White
export BACKGROUND_COLOR="#241b30" # Background Color
export FOREGROUND_COLOR="#f2f2e3" # Foreground Color (text)
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor color
export PROFILE_NAME="Synthwave Alpha"
# =============================================================== #
# =============================================================== #
# | 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