2017-02-07 16:16:45 -06:00
|
|
|
#!/bin/sh
|
2019-01-22 19:37:40 -06:00
|
|
|
# Base16 Holodized - Shell color setup script
|
2018-08-25 01:39:47 -05:00
|
|
|
# Daniel Flanagan(https://lytedev.io)
|
2017-02-07 16:16:45 -06:00
|
|
|
|
|
|
|
if [ "${TERM%%-*}" = 'linux' ]; then
|
|
|
|
# This script doesn't support linux console (use 'vconsole' template instead)
|
|
|
|
return 2>/dev/null || exit 0
|
|
|
|
fi
|
|
|
|
|
2019-01-22 19:37:40 -06:00
|
|
|
color00="fd/f6/e3" # Base 00 - Black
|
|
|
|
color01="99/08/33" # Base 08 - Red
|
|
|
|
color02="06/62/3e" # Base 0B - Green
|
|
|
|
color03="94/70/10" # Base 0A - Yellow
|
|
|
|
color04="00/44/88" # Base 0D - Blue
|
|
|
|
color05="4e/11/7f" # Base 0E - Magenta
|
|
|
|
color06="00/66/77" # Base 0C - Cyan
|
|
|
|
color07="11/11/11" # Base 05 - White
|
|
|
|
color08="8d/86/73" # Base 03 - Bright Black
|
2017-02-07 16:16:45 -06:00
|
|
|
color09=$color01 # Base 08 - Bright Red
|
|
|
|
color10=$color02 # Base 0B - Bright Green
|
|
|
|
color11=$color03 # Base 0A - Bright Yellow
|
|
|
|
color12=$color04 # Base 0D - Bright Blue
|
|
|
|
color13=$color05 # Base 0E - Bright Magenta
|
|
|
|
color14=$color06 # Base 0C - Bright Cyan
|
2019-01-22 19:37:40 -06:00
|
|
|
color15="55/55/55" # Base 07 - Bright White
|
2017-02-07 16:16:45 -06:00
|
|
|
color16="fd/97/1f" # Base 09
|
2019-01-22 19:37:40 -06:00
|
|
|
color17="88/33/11" # Base 0F
|
|
|
|
color18="dd/d6/c3" # Base 01
|
|
|
|
color19="ad/a6/93" # Base 02
|
|
|
|
color20="55/4f/45" # Base 04
|
|
|
|
color21="33/33/33" # Base 06
|
|
|
|
color_foreground="11/11/11" # Base 05
|
|
|
|
color_background="fd/f6/e3" # Base 00
|
|
|
|
color_cursor="11/11/11" # Base 05
|
2017-02-07 16:16:45 -06:00
|
|
|
|
|
|
|
if [ -n "$TMUX" ]; then
|
|
|
|
# tell tmux to pass the escape sequences through
|
|
|
|
# (Source: http://permalink.gmane.org/gmane.comp.terminal-emulators.tmux.user/1324)
|
|
|
|
printf_template="\033Ptmux;\033\033]4;%d;rgb:%s\007\033\\"
|
|
|
|
printf_template_var="\033Ptmux;\033\033]%d;rgb:%s\007\033\\"
|
|
|
|
printf_template_custom="\033Ptmux;\033\033]%s%s\007\033\\"
|
|
|
|
elif [ "${TERM%%-*}" = "screen" ]; then
|
|
|
|
# GNU screen (screen, screen-256color, screen-256color-bce)
|
|
|
|
printf_template="\033P\033]4;%d;rgb:%s\007\033\\"
|
|
|
|
printf_template_var="\033P\033]%d;rgb:%s\007\033\\"
|
|
|
|
printf_template_custom="\033P\033]%s%s\007\033\\"
|
|
|
|
elif [[ $- != *i* ]]; then
|
|
|
|
# non-interactive
|
|
|
|
alias printf=/bin/false
|
|
|
|
else
|
|
|
|
printf_template="\033]4;%d;rgb:%s\033\\"
|
|
|
|
printf_template_var="\033]%d;rgb:%s\033\\"
|
|
|
|
printf_template_custom="\033]%s%s\033\\"
|
|
|
|
fi
|
|
|
|
|
|
|
|
# 16 color space
|
|
|
|
printf $printf_template 0 $color00
|
|
|
|
printf $printf_template 1 $color01
|
|
|
|
printf $printf_template 2 $color02
|
|
|
|
printf $printf_template 3 $color03
|
|
|
|
printf $printf_template 4 $color04
|
|
|
|
printf $printf_template 5 $color05
|
|
|
|
printf $printf_template 6 $color06
|
|
|
|
printf $printf_template 7 $color07
|
|
|
|
printf $printf_template 8 $color08
|
|
|
|
printf $printf_template 9 $color09
|
|
|
|
printf $printf_template 10 $color10
|
|
|
|
printf $printf_template 11 $color11
|
|
|
|
printf $printf_template 12 $color12
|
|
|
|
printf $printf_template 13 $color13
|
|
|
|
printf $printf_template 14 $color14
|
|
|
|
printf $printf_template 15 $color15
|
|
|
|
|
|
|
|
# 256 color space
|
|
|
|
printf $printf_template 16 $color16
|
|
|
|
printf $printf_template 17 $color17
|
|
|
|
printf $printf_template 18 $color18
|
|
|
|
printf $printf_template 19 $color19
|
|
|
|
printf $printf_template 20 $color20
|
|
|
|
printf $printf_template 21 $color21
|
|
|
|
|
|
|
|
# foreground / background / cursor color
|
|
|
|
if [ -n "$ITERM_SESSION_ID" ]; then
|
|
|
|
# iTerm2 proprietary escape codes
|
2019-01-22 19:37:40 -06:00
|
|
|
printf $printf_template_custom Pg 111111 # forground
|
|
|
|
printf $printf_template_custom Ph fdf6e3 # background
|
|
|
|
printf $printf_template_custom Pi 111111 # bold color
|
|
|
|
printf $printf_template_custom Pj ada693 # selection color
|
|
|
|
printf $printf_template_custom Pk 111111 # selected text color
|
|
|
|
printf $printf_template_custom Pl 111111 # cursor
|
|
|
|
printf $printf_template_custom Pm fdf6e3 # cursor text
|
2017-02-07 16:16:45 -06:00
|
|
|
else
|
|
|
|
printf $printf_template_var 10 $color_foreground
|
|
|
|
printf $printf_template_var 11 $color_background
|
|
|
|
printf $printf_template_custom 12 ";7" # cursor (reverse video)
|
|
|
|
fi
|
|
|
|
|
|
|
|
# clean up
|
|
|
|
unset printf_template
|
|
|
|
unset printf_template_var
|
|
|
|
unset color00
|
|
|
|
unset color01
|
|
|
|
unset color02
|
|
|
|
unset color03
|
|
|
|
unset color04
|
|
|
|
unset color05
|
|
|
|
unset color06
|
|
|
|
unset color07
|
|
|
|
unset color08
|
|
|
|
unset color09
|
|
|
|
unset color10
|
|
|
|
unset color11
|
|
|
|
unset color12
|
|
|
|
unset color13
|
|
|
|
unset color14
|
|
|
|
unset color15
|
|
|
|
unset color16
|
|
|
|
unset color17
|
|
|
|
unset color18
|
|
|
|
unset color19
|
|
|
|
unset color20
|
|
|
|
unset color21
|
|
|
|
unset color_foreground
|
|
|
|
unset color_background
|
|
|
|
unset color_cursor
|