mirror of
https://github.com/Mayccoll/Gogh.git
synced 2023-08-10 21:12:46 +03:00
Merge branch 'master' into xfce4-terminal
This commit is contained in:
commit
70d8f364e5
@ -87,6 +87,7 @@ If you want to create your own color scheme or contribute to the project, [start
|
|||||||
- [Snazzy](https://github.com/sindresorhus/hyper-snazzy) by [Sindre Sorhus](https://github.com/sindresorhus)
|
- [Snazzy](https://github.com/sindresorhus/hyper-snazzy) by [Sindre Sorhus](https://github.com/sindresorhus)
|
||||||
- [Solarized](https://ethanschoonover.com/solarized) by [Ethan Schoonover](https://github.com/altercation)
|
- [Solarized](https://ethanschoonover.com/solarized) by [Ethan Schoonover](https://github.com/altercation)
|
||||||
- [Srcery](https://github.com/roosta/vim-srcery) by [Daniel Berg](https://github.com/roosta)
|
- [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)
|
||||||
- [Terminal Sexy](https://terminal.sexy) by [George Czabania](https://github.com/stayradiated)
|
- [Terminal Sexy](https://terminal.sexy) by [George Czabania](https://github.com/stayradiated)
|
||||||
- [Tilix](https://github.com/storm119/Tilix-Themes)
|
- [Tilix](https://github.com/storm119/Tilix-Themes)
|
||||||
- [Tomorrow color theme set](https://github.com/chriskempson/tomorrow-theme) by [Chris Kempson](https://github.com/chriskempson)
|
- [Tomorrow color theme set](https://github.com/chriskempson/tomorrow-theme) by [Chris Kempson](https://github.com/chriskempson)
|
||||||
|
File diff suppressed because one or more lines are too long
@ -993,6 +993,12 @@
|
|||||||
src=https://raw.githubusercontent.com/Mayccoll/Gogh/master/images/themes/srcery.jpg>
|
src=https://raw.githubusercontent.com/Mayccoll/Gogh/master/images/themes/srcery.jpg>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
<li class="mix dark bg-brown">
|
||||||
|
<h3> Summer Pop </h3>
|
||||||
|
<img alt="Theme Summer Pop"
|
||||||
|
src=https://raw.githubusercontent.com/Mayccoll/Gogh/master/images/themes/summer-pop.jpg>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li class="mix dark bg-brown">
|
<li class="mix dark bg-brown">
|
||||||
<h3> Sundried </h3>
|
<h3> Sundried </h3>
|
||||||
<img alt="Theme Sundried"
|
<img alt="Theme Sundried"
|
||||||
|
1
gogh.sh
1
gogh.sh
@ -172,6 +172,7 @@ declare -a THEMES=(
|
|||||||
'spring.sh'
|
'spring.sh'
|
||||||
'square.sh'
|
'square.sh'
|
||||||
'srcery.sh'
|
'srcery.sh'
|
||||||
|
'summer-pop.sh'
|
||||||
'sundried.sh'
|
'sundried.sh'
|
||||||
'symphonic.sh'
|
'symphonic.sh'
|
||||||
'teerb.sh'
|
'teerb.sh'
|
||||||
|
BIN
images/themes/summer-pop.jpg
Normal file
BIN
images/themes/summer-pop.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 146 KiB |
55
themes/summer-pop.sh
Normal file
55
themes/summer-pop.sh
Normal file
@ -0,0 +1,55 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
# ====================CONFIG THIS =============================== #
|
||||||
|
export COLOR_01="#666666" # Black
|
||||||
|
export COLOR_02="#FF1E8E" # Red
|
||||||
|
export COLOR_03="#8EFF1E" # Green
|
||||||
|
export COLOR_04="#FFFB00" # Yellow
|
||||||
|
export COLOR_05="#1E8EFF" # Blue
|
||||||
|
export COLOR_06="#E500E5" # Magenta
|
||||||
|
export COLOR_07="#00E5E5" # Cyan
|
||||||
|
export COLOR_08="#E5E5E5" # Light gray
|
||||||
|
|
||||||
|
export COLOR_09="#666666" # Dark gray
|
||||||
|
export COLOR_10="#FF1E8E" # Light Red
|
||||||
|
export COLOR_11="#8EFF1E" # Light Green
|
||||||
|
export COLOR_12="#FFFB00" # Light Yellow
|
||||||
|
export COLOR_13="#1E8EFF" # Light Blue
|
||||||
|
export COLOR_14="#E500E5" # Light Magenta
|
||||||
|
export COLOR_15="#00E5E5" # Light Cyan
|
||||||
|
export COLOR_16="#E5E5E5" # White
|
||||||
|
|
||||||
|
export BACKGROUND_COLOR="#272822" # Background Color
|
||||||
|
export FOREGROUND_COLOR="#FFFFFF" # Foreground Color (text)
|
||||||
|
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor color
|
||||||
|
export PROFILE_NAME="summer-pop"
|
||||||
|
# =============================================================== #
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
# =============================================================== #
|
||||||
|
# | 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/guillermoap/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
|
Loading…
Reference in New Issue
Block a user