mirror of
https://github.com/Mayccoll/Gogh.git
synced 2023-08-10 21:12:46 +03:00
Merge pull request #97 from dagolinuxoid/foxtheme
add a foxnightly theme (bash script and png image)
This commit is contained in:
commit
b39441a1b0
1
gogh.sh
1
gogh.sh
@ -44,6 +44,7 @@ declare -a THEMES=(
|
||||
'fishtank.sh'
|
||||
'flatland.sh'
|
||||
'flat.sh'
|
||||
'foxnightly.sh'
|
||||
'freya.sh'
|
||||
'frontend-delight.sh'
|
||||
'frontend-fun-forrest.sh'
|
||||
|
BIN
images/themes/foxnightly.png
Normal file
BIN
images/themes/foxnightly.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 70 KiB |
57
themes/foxnightly.sh
Executable file
57
themes/foxnightly.sh
Executable file
@ -0,0 +1,57 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
# ====================CONFIG THIS =============================== #
|
||||
COLOR_01="#2A2A2E" # HOST | Black russian | list-text-color | maybe
|
||||
COLOR_02="#B98EFF" # SYNTAX_STRING | Medium purple | html-attribute-value
|
||||
COLOR_03="#FF7DE9" # COMMAND | Orchid | html-attribute-name
|
||||
COLOR_04="#729FCF" # COMMAND_COLOR2 | Jordy blue | html-tag
|
||||
COLOR_05="#66A05B" # PATH | De york | html-comment and doctype
|
||||
COLOR_06="#75507B" # SYNTAX_VAR | Hot purple (import) list-bg-color | maybe
|
||||
COLOR_07="#ACACAE" # PROMP | Dark grey | html-tag-angle-brackets
|
||||
COLOR_08="#FFFFFF" # White | active list-bg (probably)
|
||||
|
||||
COLOR_09="#A40000" # UNKNOWN | Tomato
|
||||
COLOR_10="#BF4040" # COMMAND_ERROR | Valencia (grep highlight)
|
||||
COLOR_11="#66A05B" # EXEC | same as PATH (De york) (maybe)
|
||||
COLOR_12="#FFB86C" # UNKNOWN | Rajah
|
||||
COLOR_13="#729FCF" # FOLDER | Jordy blue | active:html-brackets/parenthesis
|
||||
COLOR_14="#8F5902" # Mandalay | special sort of-files (probably)
|
||||
COLOR_15="#C4A000" # (maybe) | Lemon
|
||||
COLOR_16="#5C3566" # UNKNOWN | Honey flower
|
||||
|
||||
BACKGROUND_COLOR="#2A2A2E" # Background Color | Black russian | true
|
||||
FOREGROUND_COLOR="#D7D7DB" # Text | Fuscous grey | html-tag-content
|
||||
CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor
|
||||
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
|
||||
# ===============================================================|#
|
||||
function gogh_colors () {
|
||||
echo ""
|
||||
echo -e "\e[0;30m█████\\e[0m\e[0;31m█████\\e[0m\e[0;32m█████\\e[0m\e[0;33m█████\\e[0m\e[0;34m█████\\e[0m\e[0;35m█████\\e[0m\e[0;36m█████\\e[0m\e[0;37m█████\\e[0m"
|
||||
echo -e "\e[0m\e[1;30m█████\\e[0m\e[1;31m█████\\e[0m\e[1;32m█████\\e[0m\e[1;33m█████\\e[0m\e[1;34m█████\\e[0m\e[1;35m█████\\e[0m\e[1;36m█████\\e[0m\e[1;37m█████\\e[0m"
|
||||
echo ""
|
||||
}
|
||||
|
||||
SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
||||
PARENT_PATH="$(dirname "$SCRIPT_PATH")"
|
||||
|
||||
if [ -e $PARENT_PATH"/apply-colors.sh" ]
|
||||
then
|
||||
gogh_colors
|
||||
source $PARENT_PATH"/apply-colors.sh"
|
||||
|
||||
else
|
||||
gogh_colors
|
||||
source <(wget -O - https://raw.githubusercontent.com/Mayccoll/Gogh/master/apply-colors.sh)
|
||||
fi
|
||||
|
Loading…
Reference in New Issue
Block a user