Colloid-gtk-theme/gtkrc.sh

354 lines
8 KiB
Bash
Raw Normal View History

2022-02-20 22:17:51 -05:00
make_gtkrc() {
local dest="${1}"
local name="${2}"
local theme="${3}"
local color="${4}"
local size="${5}"
local ctype="${6}"
local window="${7}"
2022-02-15 03:51:51 -05:00
2022-05-14 13:41:43 -04:00
[[ "${color}" == '-Light' ]] && local ELSE_LIGHT="${color}"
[[ "${color}" == '-Dark' ]] && local ELSE_DARK="${color}"
2022-02-20 22:17:51 -05:00
local GTKRC_DIR="${SRC_DIR}/main/gtk-2.0"
local THEME_DIR="${1}/${2}${3}${4}${5}${6}"
2022-05-14 13:41:43 -04:00
if [[ "${color}" != '-Dark' ]]; then
2022-02-15 03:51:51 -05:00
case "$theme" in
'')
theme_color='#3c84f7'
;;
2022-05-14 13:41:43 -04:00
-Purple)
2022-02-15 03:51:51 -05:00
theme_color='#AB47BC'
;;
2022-05-14 13:41:43 -04:00
-Pink)
2022-02-15 03:51:51 -05:00
theme_color='#EC407A'
;;
2022-05-14 13:41:43 -04:00
-Red)
2022-02-15 03:51:51 -05:00
theme_color='#E53935'
;;
2022-05-14 13:41:43 -04:00
-Orange)
2022-02-15 03:51:51 -05:00
theme_color='#F57C00'
;;
2022-05-14 13:41:43 -04:00
-Yellow)
2022-02-15 03:51:51 -05:00
theme_color='#FBC02D'
;;
2022-05-14 13:41:43 -04:00
-Green)
2022-02-15 03:51:51 -05:00
theme_color='#4CAF50'
;;
2022-05-14 13:41:43 -04:00
-Teal)
2022-02-15 03:51:51 -05:00
theme_color='#009688'
;;
2022-05-14 13:41:43 -04:00
-Grey)
2022-02-15 03:51:51 -05:00
theme_color='#464646'
;;
esac
2022-05-14 13:41:43 -04:00
if [[ "$ctype" == '-Nord' ]]; then
2022-02-15 03:51:51 -05:00
case "$theme" in
'')
theme_color='#5e81ac'
;;
2022-05-14 13:41:43 -04:00
-Purple)
2022-02-15 03:51:51 -05:00
theme_color='#b57daa'
;;
2022-05-14 13:41:43 -04:00
-Pink)
2022-02-15 03:51:51 -05:00
theme_color='#cd7092'
;;
2022-05-14 13:41:43 -04:00
-Red)
2022-02-15 03:51:51 -05:00
theme_color='#c35b65'
;;
2022-05-14 13:41:43 -04:00
-Orange)
2022-02-15 03:51:51 -05:00
theme_color='#d0846c'
;;
2022-05-14 13:41:43 -04:00
-Yellow)
2022-02-15 03:51:51 -05:00
theme_color='#e4b558'
;;
2022-05-14 13:41:43 -04:00
-Green)
2022-02-15 03:51:51 -05:00
theme_color='#82ac5d'
;;
2022-05-14 13:41:43 -04:00
-Teal)
2022-02-15 03:51:51 -05:00
theme_color='#83b9b8'
;;
2022-05-14 13:41:43 -04:00
-Grey)
2022-02-15 03:51:51 -05:00
theme_color='#3a4150'
;;
esac
fi
2022-05-14 13:41:43 -04:00
if [[ "$ctype" == '-Dracula' ]]; then
2022-02-15 03:51:51 -05:00
case "$theme" in
'')
theme_color='#a679ec'
;;
2022-05-14 13:41:43 -04:00
-Purple)
2022-02-15 03:51:51 -05:00
theme_color='#a679ec'
;;
2022-05-14 13:41:43 -04:00
-Pink)
2022-02-15 03:51:51 -05:00
theme_color='#f04cab'
;;
2022-05-14 13:41:43 -04:00
-Red)
2022-02-15 03:51:51 -05:00
theme_color='#f44d4d'
;;
2022-05-14 13:41:43 -04:00
-Orange)
2022-02-15 03:51:51 -05:00
theme_color='#f8a854'
;;
2022-05-14 13:41:43 -04:00
-Yellow)
2022-02-15 03:51:51 -05:00
theme_color='#e8f467'
;;
2022-05-14 13:41:43 -04:00
-Green)
2022-02-15 03:51:51 -05:00
theme_color='#4be772'
;;
2022-05-14 13:41:43 -04:00
-Teal)
2022-02-15 03:51:51 -05:00
theme_color='#20eed9'
;;
2022-05-14 13:41:43 -04:00
-Grey)
2022-02-15 03:51:51 -05:00
theme_color='#3c3f51'
;;
esac
fi
2024-02-22 13:03:48 -05:00
if [[ "$ctype" == "-Everforest" ]]; then
case "$theme" in
'')
2024-02-23 14:43:17 -05:00
theme_color='#7fbbb3'
2024-02-22 13:03:48 -05:00
;;
-Purple)
theme_color='#cb8eab'
;;
-Pink)
theme_color='#b16286'
;;
-Red)
theme_color='#db7375'
;;
-Orange)
theme_color='#db8d6a'
;;
-Yellow)
theme_color='#d0b174'
;;
-Green)
theme_color='#9cb575'
;;
-Teal)
theme_color='#78b587'
;;
-Grey)
theme_color='#7A8478'
esac
fi
2022-02-15 03:51:51 -05:00
else
case "$theme" in
'')
theme_color='#5b9bf8'
;;
2022-05-14 13:41:43 -04:00
-Purple)
2022-02-15 03:51:51 -05:00
theme_color='#BA68C8'
;;
2022-05-14 13:41:43 -04:00
-Pink)
2022-02-15 03:51:51 -05:00
theme_color='#F06292'
;;
2022-05-14 13:41:43 -04:00
-Red)
2022-02-15 03:51:51 -05:00
theme_color='#F44336'
;;
2022-05-14 13:41:43 -04:00
-Orange)
2022-02-15 03:51:51 -05:00
theme_color='#FB8C00'
;;
2022-05-14 13:41:43 -04:00
-Yellow)
2022-02-15 03:51:51 -05:00
theme_color='#FFD600'
;;
2022-05-14 13:41:43 -04:00
-Green)
2022-02-15 03:51:51 -05:00
theme_color='#66BB6A'
;;
2022-05-14 13:41:43 -04:00
-Teal)
2022-02-15 03:51:51 -05:00
theme_color='#4DB6AC'
;;
2022-05-14 13:41:43 -04:00
-Grey)
2022-02-15 03:51:51 -05:00
theme_color='#DDDDDD'
;;
esac
2022-05-14 13:41:43 -04:00
if [[ "$ctype" == '-Nord' ]]; then
2022-02-15 03:51:51 -05:00
case "$theme" in
'')
theme_color='#89a3c2'
;;
2022-05-14 13:41:43 -04:00
-Purple)
2022-02-15 03:51:51 -05:00
theme_color='#c89dbf'
;;
2022-05-14 13:41:43 -04:00
-Pink)
2022-02-15 03:51:51 -05:00
theme_color='#dc98b1'
;;
2022-05-14 13:41:43 -04:00
-Red)
2022-02-15 03:51:51 -05:00
theme_color='#d4878f'
;;
2022-05-14 13:41:43 -04:00
-Orange)
2022-02-15 03:51:51 -05:00
theme_color='#dca493'
;;
2022-05-14 13:41:43 -04:00
-Yellow)
2022-02-15 03:51:51 -05:00
theme_color='#eac985'
;;
2022-05-14 13:41:43 -04:00
-Green)
2022-02-15 03:51:51 -05:00
theme_color='#a0c082'
;;
2022-05-14 13:41:43 -04:00
-Teal)
2022-02-15 03:51:51 -05:00
theme_color='#83b9b8'
;;
2022-05-14 13:41:43 -04:00
-Grey)
2022-02-15 03:51:51 -05:00
theme_color='#d9dce3'
;;
esac
fi
2022-05-14 13:41:43 -04:00
if [[ "$ctype" == '-Dracula' ]]; then
2022-02-15 03:51:51 -05:00
case "$theme" in
'')
theme_color='#bd93f9'
;;
2022-05-14 13:41:43 -04:00
-Purple)
2022-02-15 03:51:51 -05:00
theme_color='#bd93f9'
;;
2022-05-14 13:41:43 -04:00
-Pink)
2022-02-15 03:51:51 -05:00
theme_color='#ff79c6'
;;
2022-05-14 13:41:43 -04:00
-Red)
2022-02-15 03:51:51 -05:00
theme_color='#ff5555'
;;
2022-05-14 13:41:43 -04:00
-Orange)
2022-02-15 03:51:51 -05:00
theme_color='#ffb86c'
;;
2022-05-14 13:41:43 -04:00
-Yellow)
2022-02-15 03:51:51 -05:00
theme_color='#f1fa8c'
;;
2022-05-14 13:41:43 -04:00
-Green)
2022-02-15 03:51:51 -05:00
theme_color='#50fa7b'
;;
2022-05-14 13:41:43 -04:00
-Teal)
2022-02-15 03:51:51 -05:00
theme_color='#50fae9'
;;
2022-05-14 13:41:43 -04:00
-Grey)
2022-02-15 03:51:51 -05:00
theme_color='#d9dae3'
;;
esac
fi
2024-02-22 13:03:48 -05:00
if [[ "$ctype" == '-Everforest' ]]; then
case "$theme" in
'')
2024-02-23 14:43:17 -05:00
theme_color='#3A94c5'
2024-02-22 13:03:48 -05:00
;;
-Purple)
2024-02-23 14:43:17 -05:00
theme_color='#bd93f9'
2024-02-22 13:03:48 -05:00
;;
-Pink)
2024-02-23 14:43:17 -05:00
theme_color='#DF69ba'
2024-02-22 13:03:48 -05:00
;;
-Red)
2024-02-23 14:43:17 -05:00
theme_color='#f85552'
2024-02-22 13:03:48 -05:00
;;
-Orange)
2024-02-23 14:43:17 -05:00
theme_color='#F57D26'
2024-02-22 13:03:48 -05:00
;;
-Yellow)
2024-02-23 14:43:17 -05:00
theme_color='#DFA000'
2024-02-22 13:03:48 -05:00
;;
-Green)
2024-02-23 14:43:17 -05:00
theme_color='#8da101'
2024-02-22 13:03:48 -05:00
;;
-Teal)
2024-02-23 14:43:17 -05:00
theme_color='#35a77c'
2024-02-22 13:03:48 -05:00
;;
-Grey)
2024-02-23 14:43:17 -05:00
theme_color='#708089'
2024-02-22 13:03:48 -05:00
;;
esac
fi
2022-02-15 03:51:51 -05:00
fi
2022-02-20 22:17:51 -05:00
if [[ "$blackness" == 'true' ]]; then
case "$ctype" in
'')
background_light='#FFFFFF'
background_dark='#0F0F0F'
background_darker='#121212'
background_alt='#212121'
titlebar_light='#F2F2F2'
titlebar_dark='#030303'
;;
2022-05-14 13:41:43 -04:00
-Nord)
2022-02-20 22:17:51 -05:00
background_light='#f8fafc'
background_dark='#0d0e11'
background_darker='#0f1115'
background_alt='#1c1f26'
titlebar_light='#f0f1f4'
titlebar_dark='#020203'
;;
2022-05-14 13:41:43 -04:00
-Dracula)
2022-02-20 22:17:51 -05:00
background_light='#f9f9fb'
background_dark='#0d0d11'
background_darker='#0f1015'
background_alt='#1c1e26'
titlebar_light='#f0f1f4'
titlebar_dark='#020203'
;;
2024-02-22 13:03:48 -05:00
-Everforest)
background_light='#fffbef'
background_dark='#1e2326'
background_darker='#232a2e'
background_alt='#293136'
titlebar_light='#f2efdf'
titlebar_dark='#020203'
;;
2022-02-20 22:17:51 -05:00
esac
else
case "$ctype" in
'')
background_light='#FFFFFF'
background_dark='#2C2C2C'
background_darker='#3C3C3C'
background_alt='#464646'
titlebar_light='#F2F2F2'
titlebar_dark='#242424'
;;
2022-05-14 13:41:43 -04:00
-Nord)
2022-02-15 03:51:51 -05:00
background_light='#f8fafc'
background_dark='#242932'
background_darker='#333a47'
background_alt='#3a4150'
2022-02-19 09:57:13 -05:00
titlebar_light='#f0f1f4'
titlebar_dark='#1e222a'
2022-02-15 03:51:51 -05:00
;;
2022-05-14 13:41:43 -04:00
-Dracula)
2022-02-15 03:51:51 -05:00
background_light='#f9f9fb'
background_dark='#242632'
background_darker='#343746'
background_alt='#3c3f51'
2022-02-19 09:57:13 -05:00
titlebar_light='#f0f1f4'
titlebar_dark='#1f2029'
2022-02-15 03:51:51 -05:00
;;
2024-02-22 13:03:48 -05:00
-Everforest)
background_light='#fffbef'
background_dark='#232A2E'
background_darker='#343F44'
background_alt='#3D484D'
2024-02-23 14:43:17 -05:00
background_light='#edeada'
2024-02-22 13:03:48 -05:00
background_dark='#1e2326'
;;
2022-02-15 03:51:51 -05:00
esac
fi
2022-02-20 22:17:51 -05:00
cp -r "${GTKRC_DIR}/gtkrc${ELSE_DARK:-}-default" "${THEME_DIR}/gtk-2.0/gtkrc"
sed -i "s/#FFFFFF/${background_light}/g" "${THEME_DIR}/gtk-2.0/gtkrc"
sed -i "s/#2C2C2C/${background_dark}/g" "${THEME_DIR}/gtk-2.0/gtkrc"
sed -i "s/#464646/${background_alt}/g" "${THEME_DIR}/gtk-2.0/gtkrc"
2022-02-15 03:51:51 -05:00
2022-05-14 13:41:43 -04:00
if [[ "${color}" == '-Dark' ]]; then
2022-02-20 22:17:51 -05:00
sed -i "s/#5b9bf8/${theme_color}/g" "${THEME_DIR}/gtk-2.0/gtkrc"
sed -i "s/#3C3C3C/${background_darker}/g" "${THEME_DIR}/gtk-2.0/gtkrc"
sed -i "s/#242424/${titlebar_dark}/g" "${THEME_DIR}/gtk-2.0/gtkrc"
else
sed -i "s/#3c84f7/${theme_color}/g" "${THEME_DIR}/gtk-2.0/gtkrc"
sed -i "s/#F2F2F2/${titlebar_light}/g" "${THEME_DIR}/gtk-2.0/gtkrc"
fi
}