From 326a1b1e6e279f47ca6aba2404edb0261938ff12 Mon Sep 17 00:00:00 2001 From: vinceliuice Date: Wed, 19 Oct 2022 15:45:53 +0800 Subject: [PATCH] update --- lib-install.sh | 26 ++++++++++++++++---------- tweaks.sh | 2 +- 2 files changed, 17 insertions(+), 11 deletions(-) diff --git a/lib-install.sh b/lib-install.sh index 9d76ce9..6f0e939 100755 --- a/lib-install.sh +++ b/lib-install.sh @@ -488,17 +488,15 @@ remove_old_packy() { } config_gtk4() { - local color="$(destify ${1})" - local opacity="$(destify ${2})" - local alt="$(destify ${3})" - local theme="$(destify ${4})" + local acolor="$(destify ${1})" + local alt="$(destify ${2})" local TARGET_DIR="${HOME}/.config/gtk-4.0" # Install gtk4.0 into config for libadwaita mkdir -p "${TARGET_DIR}" rm -rf "${TARGET_DIR}/"{gtk.css,gtk-dark.css,assets,windows-assets} - sassc ${SASSC_OPT} "${THEME_SRC_DIR}/main/gtk-4.0/gtk${color}.scss" "${TARGET_DIR}/gtk.css" + sassc ${SASSC_OPT} "${THEME_SRC_DIR}/main/gtk-4.0/gtk${acolor}.scss" "${TARGET_DIR}/gtk.css" sassc ${SASSC_OPT} "${THEME_SRC_DIR}/main/gtk-4.0/gtk-Dark.scss" "${TARGET_DIR}/gtk-dark.css" cp -r "${THEME_SRC_DIR}/assets/gtk/common-assets/assets" "${TARGET_DIR}" cp -r "${THEME_SRC_DIR}/assets/gtk/common-assets/sidebar-assets/"*".png" "${TARGET_DIR}/assets" @@ -520,7 +518,7 @@ install_themes() { for alt in "${alts[@]}"; do for theme in "${themes[@]}"; do for color in "${colors[@]}"; do - gtk_base "${color}" "${opacity}" "${theme}" "${compact}" + gtk_base "${opacity}" "${theme}" "${compact}" install_theemy "${color}" "${opacity}" "${alt}" "${theme}" install_shelly "${color}" "${opacity}" "${alt}" "${theme}" "${icon}" install_xfwmy "${color}" @@ -533,8 +531,18 @@ install_themes() { } install_libadwaita() { - gtk_base "${colors[1]}" "${opacities[0]}" "${themes[0]}" - config_gtk4 "${colors[0]}" "${opacities[0]}" "${alts[0]}" "${themes[0]}" + gtk_base "${opacities[0]}" "${themes[0]}" + + color="${colors[1]}" + acolor='Dark' + + if [[ ${color} == '' ]]; then + acolor='Light' + else + acolor='Dark' + fi + + config_gtk4 "${acolor}" "${alts}" } remove_libadwaita() { @@ -807,7 +815,6 @@ disconnect_snap() { ######################################################################### gtk_base() { - rm -rf "${THEME_SRC_DIR}/sass/_gtk-base-temp.scss" cp -rf "${THEME_SRC_DIR}/sass/_gtk-base"{".scss","-temp.scss"} # Theme base options @@ -829,7 +836,6 @@ gtk_base() { ############################################################################### customize_theme() { - rm -rf "${THEME_SRC_DIR}/sass/_theme-options-temp.scss" cp -rf "${THEME_SRC_DIR}/sass/_theme-options"{".scss","-temp.scss"} # Darker dark colors diff --git a/tweaks.sh b/tweaks.sh index 3cc3de6..2676d22 100755 --- a/tweaks.sh +++ b/tweaks.sh @@ -271,7 +271,7 @@ else if [[ "${libadwaita}" == 'true' ]]; then if [[ "$UID" != '0' ]]; then install_libadwaita - prompt -w "Installed ${name} ${opacities} ${colors} gtk-4.0 into config for libadwaita!"; echo + prompt -w "Installed ${name} ${opacities} ${acolor} gtk-4.0 theme in '${HOME}/.config/gtk-4.0' for libadwaita!"; echo else prompt -e "Do not run '--libadwaita' option with sudo!"; echo fi