This commit is contained in:
Vince 2021-05-12 14:01:57 +08:00
parent 19e1366a62
commit 45d5ba137c
260 changed files with 121 additions and 3135 deletions

1
.gitignore vendored
View File

@ -1,6 +1,7 @@
.DS_store .DS_store
.sass-cache .sass-cache
_theme-options-temp.scss _theme-options-temp.scss
_gtk-base-temp.scss
*.css.map *.css.map
src/main/gtk-3.0/gtk*.css src/main/gtk-3.0/gtk*.css
src/main/gtk-4.0/gtk*.css src/main/gtk-4.0/gtk*.css

View File

@ -81,7 +81,7 @@ NAUTILUS_STYLE_VARIANTS=('default' 'stable' 'mojave' 'glassy')
dest="${THEME_DIR}" dest="${THEME_DIR}"
name="${THEME_NAME}" name="${THEME_NAME}"
colors=("${COLOR_VARIANTS}") colors=("${COLOR_VARIANTS}")
opacities=("${OPACITY_VARIANTS[0]}") opacities=("${OPACITY_VARIANTS}")
alts=("${ALT_VARIANTS[0]}") alts=("${ALT_VARIANTS[0]}")
themes=("${THEME_VARIANTS[0]}") themes=("${THEME_VARIANTS[0]}")
icon="${ICON_VARIANTS[0]}" icon="${ICON_VARIANTS[0]}"
@ -89,6 +89,7 @@ sidebar_size="${SIDEBAR_SIZE_VARIANTS[0]}"
panel_opacity="${PANEL_OPACITY_VARIANTS[0]}" panel_opacity="${PANEL_OPACITY_VARIANTS[0]}"
nautilus_style="${NAUTILUS_STYLE_VARIANTS[1]}" nautilus_style="${NAUTILUS_STYLE_VARIANTS[1]}"
background="default" background="default"
compact="true"
# Ambigous arguments checking and overriding default values # Ambigous arguments checking and overriding default values
declare -A has_set=([-b]="false" [-s]="false" [-p]="false" [-d]="false" [-n]="false" [-a]="false" [-o]="false" [-c]="false" [-i]="false" [-t]="false" [-N]="false") declare -A has_set=([-b]="false" [-s]="false" [-p]="false" [-d]="false" [-n]="false" [-a]="false" [-o]="false" [-c]="false" [-i]="false" [-t]="false" [-N]="false")

View File

@ -67,19 +67,37 @@ install_gdm_deps() {
} }
install_beggy_deps() { install_beggy_deps() {
if ! has_command sassc; then
echo; prompt -w "'sassc' are required for this option."
if has_command zypper; then
rootify zypper in -y sassc
elif has_command apt; then
rootify apt install -y sassc
elif has_command dnf; then
rootify dnf install -y sassc
elif has_command yum; then
rootify yum install -y sassc
elif has_command pacman; then
rootify pacman -S --noconfirm --needed sassc
else
prompt -w "INSTRUCTION: Please make sure you have installed all of the required dependencies!"
fi
fi
if ! has_command convert; then if ! has_command convert; then
echo; prompt -w "'imagemagick' are required for this option." echo; prompt -w "'imagemagick' are required for this option."
if has_command zypper; then if has_command zypper; then
rootify zypper in -y ImageMagick rootify zypper in -y ImageMagick
elif has_command apt; then elif has_command apt; then
rootify apt install -y sassc imagemagick rootify apt install -y imagemagick
elif has_command dnf; then elif has_command dnf; then
rootify dnf install -y sassc ImageMagick rootify dnf install -y ImageMagick
elif has_command yum; then elif has_command yum; then
rootify yum install -y sassc ImageMagick rootify yum install -y ImageMagick
elif has_command pacman; then elif has_command pacman; then
rootify pacman -S --noconfirm --needed sassc imagemagick rootify pacman -S --noconfirm --needed imagemagick
else else
prompt -w "INSTRUCTION: Please make sure you have installed all of the required dependencies!" prompt -w "INSTRUCTION: Please make sure you have installed all of the required dependencies!"
fi fi
@ -155,8 +173,8 @@ install_darky() {
local opacity="$(destify ${1})" local opacity="$(destify ${1})"
local theme="$(destify ${2})" local theme="$(destify ${2})"
sassc ${SASSC_OPT} "${THEME_SRC_DIR}/main/gtk-3.0/gtk-dark${opacity}${theme}.scss" "${WHITESUR_TMP_DIR}/darky-3${opacity}${theme}.css" sassc ${SASSC_OPT} "${THEME_SRC_DIR}/main/gtk-3.0/gtk-dark.scss" "${WHITESUR_TMP_DIR}/darky-3.css"
sassc ${SASSC_OPT} "${THEME_SRC_DIR}/main/gtk-4.0/gtk-dark${opacity}${theme}.scss" "${WHITESUR_TMP_DIR}/darky-4${opacity}${theme}.css" sassc ${SASSC_OPT} "${THEME_SRC_DIR}/main/gtk-4.0/gtk-dark.scss" "${WHITESUR_TMP_DIR}/darky-4.css"
} }
install_xfwmy() { install_xfwmy() {
@ -197,9 +215,9 @@ install_shelly() {
cp -r "${THEME_SRC_DIR}/main/gnome-shell/pad-osd.css" "${TARGET_DIR}" cp -r "${THEME_SRC_DIR}/main/gnome-shell/pad-osd.css" "${TARGET_DIR}"
if [[ "${GNOME_VERSION}" == 'new' ]]; then if [[ "${GNOME_VERSION}" == 'new' ]]; then
sassc ${SASSC_OPT} "${THEME_SRC_DIR}/main/gnome-shell/shell-40-0/gnome-shell${color}${opacity}${alt}${theme}.scss" "${TARGET_DIR}/gnome-shell.css" sassc ${SASSC_OPT} "${THEME_SRC_DIR}/main/gnome-shell/shell-40-0/gnome-shell${color}.scss" "${TARGET_DIR}/gnome-shell.css"
else else
sassc ${SASSC_OPT} "${THEME_SRC_DIR}/main/gnome-shell/shell-3-28/gnome-shell${color}${opacity}${alt}${theme}.scss" "${TARGET_DIR}/gnome-shell.css" sassc ${SASSC_OPT} "${THEME_SRC_DIR}/main/gnome-shell/shell-3-28/gnome-shell${color}.scss" "${TARGET_DIR}/gnome-shell.css"
fi fi
cp -r "${THEME_SRC_DIR}/assets/gnome-shell/common-assets/"*".svg" "${TARGET_DIR}/assets" cp -r "${THEME_SRC_DIR}/assets/gnome-shell/common-assets/"*".svg" "${TARGET_DIR}/assets"
@ -264,13 +282,8 @@ install_theemy() {
cp -r "${THEME_SRC_DIR}/assets/gtk/common-assets/assets${theme}/"*".png" "${TMP_DIR_T}/assets" cp -r "${THEME_SRC_DIR}/assets/gtk/common-assets/assets${theme}/"*".png" "${TMP_DIR_T}/assets"
fi fi
if [[ "${color}" == '-light' ]]; then sassc ${SASSC_OPT} "${THEME_SRC_DIR}/main/gtk-3.0/gtk${color}.scss" "${TMP_DIR_T}/gtk.css"
sassc ${SASSC_OPT} "${THEME_SRC_DIR}/main/gtk-3.0/gtk-light${opacity}${theme}.scss" "${TMP_DIR_T}/gtk.css" sassc ${SASSC_OPT} "${THEME_SRC_DIR}/main/gtk-3.0/gtk-dark.scss" "${TMP_DIR_T}/gtk-dark.css"
else
cp -r "${WHITESUR_TMP_DIR}/darky-3${opacity}${theme}.css" "${TMP_DIR_T}/gtk.css"
fi
cp -r "${WHITESUR_TMP_DIR}/darky-3${opacity}${theme}.css" "${TMP_DIR_T}/gtk-dark.css"
mkdir -p "${TARGET_DIR}/gtk-3.0" mkdir -p "${TARGET_DIR}/gtk-3.0"
cp -r "${THEME_SRC_DIR}/assets/gtk/thumbnails/thumbnail${color}${theme}.png" "${TARGET_DIR}/gtk-3.0/thumbnail.png" cp -r "${THEME_SRC_DIR}/assets/gtk/thumbnails/thumbnail${color}${theme}.png" "${TARGET_DIR}/gtk-3.0/thumbnail.png"
@ -284,13 +297,8 @@ install_theemy() {
cp -r "${TMP_DIR_T}/assets" "${TMP_DIR_F}" cp -r "${TMP_DIR_T}/assets" "${TMP_DIR_F}"
cp -r "${TMP_DIR_T}/windows-assets" "${TMP_DIR_F}" cp -r "${TMP_DIR_T}/windows-assets" "${TMP_DIR_F}"
if [[ "${color}" == '-light' ]]; then sassc ${SASSC_OPT} "${THEME_SRC_DIR}/main/gtk-4.0/gtk${color}.scss" "${TMP_DIR_F}/gtk.css"
sassc ${SASSC_OPT} "${THEME_SRC_DIR}/main/gtk-4.0/gtk-light${opacity}${theme}.scss" "${TMP_DIR_F}/gtk.css" sassc ${SASSC_OPT} "${THEME_SRC_DIR}/main/gtk-4.0/gtk-dark.scss" "${TMP_DIR_F}/gtk-dark.css"
else
cp -r "${WHITESUR_TMP_DIR}/darky-4${opacity}${theme}.css" "${TMP_DIR_F}/gtk.css"
fi
cp -r "${WHITESUR_TMP_DIR}/darky-4${opacity}${theme}.css" "${TMP_DIR_F}/gtk-dark.css"
mkdir -p "${TARGET_DIR}/gtk-4.0" mkdir -p "${TARGET_DIR}/gtk-4.0"
cp -r "${THEME_SRC_DIR}/assets/gtk/thumbnails/thumbnail${color}${theme}.png" "${TARGET_DIR}/gtk-4.0/thumbnail.png" cp -r "${THEME_SRC_DIR}/assets/gtk/thumbnails/thumbnail${color}${theme}.png" "${TARGET_DIR}/gtk-4.0/thumbnail.png"
@ -301,7 +309,7 @@ install_theemy() {
#----------------Cinnamon-----------------# #----------------Cinnamon-----------------#
mkdir -p "${TARGET_DIR}/cinnamon" mkdir -p "${TARGET_DIR}/cinnamon"
sassc ${SASSC_OPT} "${THEME_SRC_DIR}/main/cinnamon/cinnamon${color}${opacity}${theme}.scss" "${TARGET_DIR}/cinnamon/cinnamon.css" sassc ${SASSC_OPT} "${THEME_SRC_DIR}/main/cinnamon/cinnamon${color}.scss" "${TARGET_DIR}/cinnamon/cinnamon.css"
cp -r "${THEME_SRC_DIR}/assets/cinnamon/common-assets" "${TARGET_DIR}/cinnamon/assets" cp -r "${THEME_SRC_DIR}/assets/cinnamon/common-assets" "${TARGET_DIR}/cinnamon/assets"
if [[ ${theme} != '' ]]; then if [[ ${theme} != '' ]]; then
@ -357,16 +365,13 @@ install_themes() {
for opacity in "${opacities[@]}"; do for opacity in "${opacities[@]}"; do
for alt in "${alts[@]}"; do for alt in "${alts[@]}"; do
for theme in "${themes[@]}"; do for theme in "${themes[@]}"; do
install_xfwmy "${color}" & install_xfwmy "${color}"
# Darky is required by Theemy, don't make it a background process ("&")
install_darky "${opacity}" "${theme}"
for color in "${colors[@]}"; do for color in "${colors[@]}"; do
install_theemy "${color}" "${opacity}" "${alt}" "${theme}" "${icon}" & gtk_base & install_theemy "${color}" "${opacity}" "${alt}" "${theme}" "${icon}" &
process_ids+=("${!}") process_ids+=("${!}")
install_shelly "${color}" "${opacity}" "${alt}" "${theme}" "${icon}" & gtk_base & install_shelly "${color}" "${opacity}" "${alt}" "${theme}" "${icon}" &
process_ids+=("${!}") process_ids+=("${!}")
done done
done done
@ -536,12 +541,35 @@ disconnect_snap() {
done done
} }
#########################################################################
# GTK BASE #
#########################################################################
gtk_base() {
cp -rf "${THEME_SRC_DIR}/sass/_gtk-base.scss" "${THEME_SRC_DIR}/sass/_gtk-base-temp.scss"
# Theme base options
sed ${SED_OPT} "/\$laptop/s/false/${compact}/" "${THEME_SRC_DIR}/sass/_gtk-base-temp.scss"
if [[ "${opacity}" == 'solid' ]]; then
sed ${SED_OPT} "/\$trans/s/true/false/" "${THEME_SRC_DIR}/sass/_gtk-base-temp.scss"
fi
if [[ "${color}" == 'light' && ${opacity} == 'solid' ]]; then
sed ${SED_OPT} "/\$black/s/false/true/" "${THEME_SRC_DIR}/sass/_gtk-base-temp.scss"
fi
if [[ "${theme}" != '' ]]; then
sed ${SED_OPT} "/\$theme/s/default/${theme}/" "${THEME_SRC_DIR}/sass/_gtk-base-temp.scss"
fi
}
############################################################################### ###############################################################################
# CUSTOMIZATIONS # # CUSTOMIZATIONS #
############################################################################### ###############################################################################
customize_theme() { customize_theme() {
rm -rf "${THEME_SRC_DIR}/sass/_theme-options-temp.scss" # rm -rf "${THEME_SRC_DIR}/sass/_theme-options-temp.scss"
cp -rf "${THEME_SRC_DIR}/sass/_theme-options"{".scss","-temp.scss"} cp -rf "${THEME_SRC_DIR}/sass/_theme-options"{".scss","-temp.scss"}
# Change gnome-shell panel transparency # Change gnome-shell panel transparency

View File

@ -1,10 +0,0 @@
$variant: 'dark';
$laptop: 'true';
$trans: 'true';
$black: 'false';
$theme: 'blue';
@import '../../sass/colors';
@import '../../sass/variables';
@import '../../sass/cinnamon/drawing';
@import '../../sass/cinnamon/common';

View File

@ -1,10 +0,0 @@
$variant: 'dark';
$laptop: 'true';
$trans: 'true';
$black: 'false';
$theme: 'green';
@import '../../sass/colors';
@import '../../sass/variables';
@import '../../sass/cinnamon/drawing';
@import '../../sass/cinnamon/common';

View File

@ -1,10 +0,0 @@
$variant: 'dark';
$laptop: 'true';
$trans: 'true';
$black: 'false';
$theme: 'grey';
@import '../../sass/colors';
@import '../../sass/variables';
@import '../../sass/cinnamon/drawing';
@import '../../sass/cinnamon/common';

View File

@ -1,10 +0,0 @@
$variant: 'dark';
$laptop: 'true';
$trans: 'true';
$black: 'false';
$theme: 'orange';
@import '../../sass/colors';
@import '../../sass/variables';
@import '../../sass/cinnamon/drawing';
@import '../../sass/cinnamon/common';

View File

@ -1,10 +0,0 @@
$variant: 'dark';
$laptop: 'true';
$trans: 'true';
$black: 'false';
$theme: 'pink';
@import '../../sass/colors';
@import '../../sass/variables';
@import '../../sass/cinnamon/drawing';
@import '../../sass/cinnamon/common';

View File

@ -1,10 +0,0 @@
$variant: 'dark';
$laptop: 'true';
$trans: 'true';
$black: 'false';
$theme: 'purple';
@import '../../sass/colors';
@import '../../sass/variables';
@import '../../sass/cinnamon/drawing';
@import '../../sass/cinnamon/common';

View File

@ -1,10 +0,0 @@
$variant: 'dark';
$laptop: 'true';
$trans: 'true';
$black: 'false';
$theme: 'red';
@import '../../sass/colors';
@import '../../sass/variables';
@import '../../sass/cinnamon/drawing';
@import '../../sass/cinnamon/common';

View File

@ -1,10 +0,0 @@
$variant: 'dark';
$laptop: 'true';
$trans: 'false';
$black: 'false';
$theme: 'blue';
@import '../../sass/colors';
@import '../../sass/variables';
@import '../../sass/cinnamon/drawing';
@import '../../sass/cinnamon/common';

View File

@ -1,10 +0,0 @@
$variant: 'dark';
$laptop: 'true';
$trans: 'false';
$black: 'false';
$theme: 'green';
@import '../../sass/colors';
@import '../../sass/variables';
@import '../../sass/cinnamon/drawing';
@import '../../sass/cinnamon/common';

View File

@ -1,10 +0,0 @@
$variant: 'dark';
$laptop: 'true';
$trans: 'false';
$black: 'false';
$theme: 'grey';
@import '../../sass/colors';
@import '../../sass/variables';
@import '../../sass/cinnamon/drawing';
@import '../../sass/cinnamon/common';

View File

@ -1,10 +0,0 @@
$variant: 'dark';
$laptop: 'true';
$trans: 'false';
$black: 'false';
$theme: 'orange';
@import '../../sass/colors';
@import '../../sass/variables';
@import '../../sass/cinnamon/drawing';
@import '../../sass/cinnamon/common';

View File

@ -1,10 +0,0 @@
$variant: 'dark';
$laptop: 'true';
$trans: 'false';
$black: 'false';
$theme: 'pink';
@import '../../sass/colors';
@import '../../sass/variables';
@import '../../sass/cinnamon/drawing';
@import '../../sass/cinnamon/common';

View File

@ -1,10 +0,0 @@
$variant: 'dark';
$laptop: 'true';
$trans: 'false';
$black: 'false';
$theme: 'purple';
@import '../../sass/colors';
@import '../../sass/variables';
@import '../../sass/cinnamon/drawing';
@import '../../sass/cinnamon/common';

View File

@ -1,10 +0,0 @@
$variant: 'dark';
$laptop: 'true';
$trans: 'false';
$black: 'false';
$theme: 'red';
@import '../../sass/colors';
@import '../../sass/variables';
@import '../../sass/cinnamon/drawing';
@import '../../sass/cinnamon/common';

View File

@ -1,10 +0,0 @@
$variant: 'dark';
$laptop: 'true';
$trans: 'false';
$black: 'false';
$theme: 'yellow';
@import '../../sass/colors';
@import '../../sass/variables';
@import '../../sass/cinnamon/drawing';
@import '../../sass/cinnamon/common';

View File

@ -1,10 +0,0 @@
$variant: 'dark';
$laptop: 'true';
$trans: 'false';
$black: 'false';
$theme: 'default';
@import '../../sass/colors';
@import '../../sass/variables';
@import '../../sass/cinnamon/drawing';
@import '../../sass/cinnamon/common';

View File

@ -1,10 +0,0 @@
$variant: 'dark';
$laptop: 'true';
$trans: 'true';
$black: 'false';
$theme: 'yellow';
@import '../../sass/colors';
@import '../../sass/variables';
@import '../../sass/cinnamon/drawing';
@import '../../sass/cinnamon/common';

View File

@ -1,10 +1,6 @@
$variant: 'dark'; $variant: 'dark';
$laptop: 'true';
$trans: 'true';
$black: 'false';
$theme: 'default';
@import '../../sass/colors';
@import '../../sass/variables'; @import '../../sass/variables';
@import '../../sass/colors';
@import '../../sass/cinnamon/drawing'; @import '../../sass/cinnamon/drawing';
@import '../../sass/cinnamon/common'; @import '../../sass/cinnamon/common';

View File

@ -1,10 +0,0 @@
$variant: 'light';
$laptop: 'true';
$trans: 'true';
$black: 'false';
$theme: 'blue';
@import '../../sass/colors';
@import '../../sass/variables';
@import '../../sass/cinnamon/drawing';
@import '../../sass/cinnamon/common';

View File

@ -1,10 +0,0 @@
$variant: 'light';
$laptop: 'true';
$trans: 'true';
$black: 'false';
$theme: 'green';
@import '../../sass/colors';
@import '../../sass/variables';
@import '../../sass/cinnamon/drawing';
@import '../../sass/cinnamon/common';

View File

@ -1,10 +0,0 @@
$variant: 'light';
$laptop: 'true';
$trans: 'true';
$black: 'false';
$theme: 'grey';
@import '../../sass/colors';
@import '../../sass/variables';
@import '../../sass/cinnamon/drawing';
@import '../../sass/cinnamon/common';

View File

@ -1,10 +0,0 @@
$variant: 'light';
$laptop: 'true';
$trans: 'true';
$black: 'false';
$theme: 'orange';
@import '../../sass/colors';
@import '../../sass/variables';
@import '../../sass/cinnamon/drawing';
@import '../../sass/cinnamon/common';

View File

@ -1,10 +0,0 @@
$variant: 'light';
$laptop: 'true';
$trans: 'true';
$black: 'false';
$theme: 'pink';
@import '../../sass/colors';
@import '../../sass/variables';
@import '../../sass/cinnamon/drawing';
@import '../../sass/cinnamon/common';

View File

@ -1,10 +0,0 @@
$variant: 'light';
$laptop: 'true';
$trans: 'true';
$black: 'false';
$theme: 'purple';
@import '../../sass/colors';
@import '../../sass/variables';
@import '../../sass/cinnamon/drawing';
@import '../../sass/cinnamon/common';

View File

@ -1,10 +0,0 @@
$variant: 'light';
$laptop: 'true';
$trans: 'true';
$black: 'false';
$theme: 'red';
@import '../../sass/colors';
@import '../../sass/variables';
@import '../../sass/cinnamon/drawing';
@import '../../sass/cinnamon/common';

View File

@ -1,10 +0,0 @@
$variant: 'light';
$laptop: 'true';
$trans: 'false';
$black: 'true';
$theme: 'blue';
@import '../../sass/colors';
@import '../../sass/variables';
@import '../../sass/cinnamon/drawing';
@import '../../sass/cinnamon/common';

View File

@ -1,10 +0,0 @@
$variant: 'light';
$laptop: 'true';
$trans: 'false';
$black: 'true';
$theme: 'green';
@import '../../sass/colors';
@import '../../sass/variables';
@import '../../sass/cinnamon/drawing';
@import '../../sass/cinnamon/common';

View File

@ -1,10 +0,0 @@
$variant: 'light';
$laptop: 'true';
$trans: 'false';
$black: 'true';
$theme: 'grey';
@import '../../sass/colors';
@import '../../sass/variables';
@import '../../sass/cinnamon/drawing';
@import '../../sass/cinnamon/common';

View File

@ -1,10 +0,0 @@
$variant: 'light';
$laptop: 'true';
$trans: 'false';
$black: 'true';
$theme: 'orange';
@import '../../sass/colors';
@import '../../sass/variables';
@import '../../sass/cinnamon/drawing';
@import '../../sass/cinnamon/common';

View File

@ -1,10 +0,0 @@
$variant: 'light';
$laptop: 'true';
$trans: 'false';
$black: 'true';
$theme: 'pink';
@import '../../sass/colors';
@import '../../sass/variables';
@import '../../sass/cinnamon/drawing';
@import '../../sass/cinnamon/common';

View File

@ -1,10 +0,0 @@
$variant: 'light';
$laptop: 'true';
$trans: 'false';
$black: 'true';
$theme: 'purple';
@import '../../sass/colors';
@import '../../sass/variables';
@import '../../sass/cinnamon/drawing';
@import '../../sass/cinnamon/common';

View File

@ -1,10 +0,0 @@
$variant: 'light';
$laptop: 'true';
$trans: 'false';
$black: 'true';
$theme: 'red';
@import '../../sass/colors';
@import '../../sass/variables';
@import '../../sass/cinnamon/drawing';
@import '../../sass/cinnamon/common';

View File

@ -1,10 +0,0 @@
$variant: 'light';
$laptop: 'true';
$trans: 'false';
$black: 'true';
$theme: 'yellow';
@import '../../sass/colors';
@import '../../sass/variables';
@import '../../sass/cinnamon/drawing';
@import '../../sass/cinnamon/common';

View File

@ -1,10 +0,0 @@
$variant: 'light';
$laptop: 'true';
$trans: 'false';
$black: 'true';
$theme: 'default';
@import '../../sass/colors';
@import '../../sass/variables';
@import '../../sass/cinnamon/drawing';
@import '../../sass/cinnamon/common';

View File

@ -1,10 +0,0 @@
$variant: 'light';
$laptop: 'true';
$trans: 'true';
$black: 'false';
$theme: 'yellow';
@import '../../sass/colors';
@import '../../sass/variables';
@import '../../sass/cinnamon/drawing';
@import '../../sass/cinnamon/common';

View File

@ -1,10 +1,6 @@
$variant: 'light'; $variant: 'light';
$laptop: 'true';
$trans: 'true';
$black: 'false';
$theme: 'default';
@import '../../sass/colors';
@import '../../sass/variables'; @import '../../sass/variables';
@import '../../sass/colors';
@import '../../sass/cinnamon/drawing'; @import '../../sass/cinnamon/drawing';
@import '../../sass/cinnamon/common'; @import '../../sass/cinnamon/common';

View File

@ -1,11 +0,0 @@
$variant: 'dark';
$laptop: 'true';
$trans: 'true';
$black: 'false';
$theme: 'blue';
@import '../../../sass/colors';
@import '../../../sass/variables';
@import '../../../sass/gnome-shell/drawing';
@import '../../../sass/gnome-shell/widgets-3-28';
@import '../../../sass/gnome-shell/extensions-3-28';

View File

@ -1,11 +0,0 @@
$variant: 'dark';
$laptop: 'true';
$trans: 'true';
$black: 'false';
$theme: 'green';
@import '../../../sass/colors';
@import '../../../sass/variables';
@import '../../../sass/gnome-shell/drawing';
@import '../../../sass/gnome-shell/widgets-3-28';
@import '../../../sass/gnome-shell/extensions-3-28';

View File

@ -1,11 +0,0 @@
$variant: 'dark';
$laptop: 'true';
$trans: 'true';
$black: 'false';
$theme: 'grey';
@import '../../../sass/colors';
@import '../../../sass/variables';
@import '../../../sass/gnome-shell/drawing';
@import '../../../sass/gnome-shell/widgets-3-28';
@import '../../../sass/gnome-shell/extensions-3-28';

View File

@ -1,11 +0,0 @@
$variant: 'dark';
$laptop: 'true';
$trans: 'true';
$black: 'false';
$theme: 'orange';
@import '../../../sass/colors';
@import '../../../sass/variables';
@import '../../../sass/gnome-shell/drawing';
@import '../../../sass/gnome-shell/widgets-3-28';
@import '../../../sass/gnome-shell/extensions-3-28';

View File

@ -1,11 +0,0 @@
$variant: 'dark';
$laptop: 'true';
$trans: 'true';
$black: 'false';
$theme: 'pink';
@import '../../../sass/colors';
@import '../../../sass/variables';
@import '../../../sass/gnome-shell/drawing';
@import '../../../sass/gnome-shell/widgets-3-28';
@import '../../../sass/gnome-shell/extensions-3-28';

View File

@ -1,11 +0,0 @@
$variant: 'dark';
$laptop: 'true';
$trans: 'true';
$black: 'false';
$theme: 'purple';
@import '../../../sass/colors';
@import '../../../sass/variables';
@import '../../../sass/gnome-shell/drawing';
@import '../../../sass/gnome-shell/widgets-3-28';
@import '../../../sass/gnome-shell/extensions-3-28';

View File

@ -1,11 +0,0 @@
$variant: 'dark';
$laptop: 'true';
$trans: 'true';
$black: 'false';
$theme: 'red';
@import '../../../sass/colors';
@import '../../../sass/variables';
@import '../../../sass/gnome-shell/drawing';
@import '../../../sass/gnome-shell/widgets-3-28';
@import '../../../sass/gnome-shell/extensions-3-28';

View File

@ -1,11 +0,0 @@
$variant: 'dark';
$laptop: 'true';
$trans: 'true';
$black: 'false';
$theme: 'yellow';
@import '../../../sass/colors';
@import '../../../sass/variables';
@import '../../../sass/gnome-shell/drawing';
@import '../../../sass/gnome-shell/widgets-3-28';
@import '../../../sass/gnome-shell/extensions-3-28';

View File

@ -1,11 +0,0 @@
$variant: 'dark';
$laptop: 'true';
$trans: 'true';
$black: 'false';
$theme: 'default';
@import '../../../sass/colors';
@import '../../../sass/variables';
@import '../../../sass/gnome-shell/drawing';
@import '../../../sass/gnome-shell/widgets-3-28';
@import '../../../sass/gnome-shell/extensions-3-28';

View File

@ -1,11 +0,0 @@
$variant: 'dark';
$laptop: 'true';
$trans: 'true';
$black: 'false';
$theme: 'blue';
@import '../../../sass/colors';
@import '../../../sass/variables';
@import '../../../sass/gnome-shell/drawing';
@import '../../../sass/gnome-shell/widgets-3-28';
@import '../../../sass/gnome-shell/extensions-3-28';

View File

@ -1,11 +0,0 @@
$variant: 'dark';
$laptop: 'true';
$trans: 'true';
$black: 'false';
$theme: 'green';
@import '../../../sass/colors';
@import '../../../sass/variables';
@import '../../../sass/gnome-shell/drawing';
@import '../../../sass/gnome-shell/widgets-3-28';
@import '../../../sass/gnome-shell/extensions-3-28';

View File

@ -1,11 +0,0 @@
$variant: 'dark';
$laptop: 'true';
$trans: 'true';
$black: 'false';
$theme: 'grey';
@import '../../../sass/colors';
@import '../../../sass/variables';
@import '../../../sass/gnome-shell/drawing';
@import '../../../sass/gnome-shell/widgets-3-28';
@import '../../../sass/gnome-shell/extensions-3-28';

View File

@ -1,11 +0,0 @@
$variant: 'dark';
$laptop: 'true';
$trans: 'true';
$black: 'false';
$theme: 'orange';
@import '../../../sass/colors';
@import '../../../sass/variables';
@import '../../../sass/gnome-shell/drawing';
@import '../../../sass/gnome-shell/widgets-3-28';
@import '../../../sass/gnome-shell/extensions-3-28';

View File

@ -1,11 +0,0 @@
$variant: 'dark';
$laptop: 'true';
$trans: 'true';
$black: 'false';
$theme: 'pink';
@import '../../../sass/colors';
@import '../../../sass/variables';
@import '../../../sass/gnome-shell/drawing';
@import '../../../sass/gnome-shell/widgets-3-28';
@import '../../../sass/gnome-shell/extensions-3-28';

View File

@ -1,11 +0,0 @@
$variant: 'dark';
$laptop: 'true';
$trans: 'true';
$black: 'false';
$theme: 'purple';
@import '../../../sass/colors';
@import '../../../sass/variables';
@import '../../../sass/gnome-shell/drawing';
@import '../../../sass/gnome-shell/widgets-3-28';
@import '../../../sass/gnome-shell/extensions-3-28';

View File

@ -1,11 +0,0 @@
$variant: 'dark';
$laptop: 'true';
$trans: 'true';
$black: 'false';
$theme: 'red';
@import '../../../sass/colors';
@import '../../../sass/variables';
@import '../../../sass/gnome-shell/drawing';
@import '../../../sass/gnome-shell/widgets-3-28';
@import '../../../sass/gnome-shell/extensions-3-28';

View File

@ -1,11 +0,0 @@
$variant: 'dark';
$laptop: 'true';
$trans: 'false';
$black: 'false';
$theme: 'blue';
@import '../../../sass/colors';
@import '../../../sass/variables';
@import '../../../sass/gnome-shell/drawing';
@import '../../../sass/gnome-shell/widgets-3-28';
@import '../../../sass/gnome-shell/extensions-3-28';

View File

@ -1,11 +0,0 @@
$variant: 'dark';
$laptop: 'true';
$trans: 'false';
$black: 'false';
$theme: 'green';
@import '../../../sass/colors';
@import '../../../sass/variables';
@import '../../../sass/gnome-shell/drawing';
@import '../../../sass/gnome-shell/widgets-3-28';
@import '../../../sass/gnome-shell/extensions-3-28';

View File

@ -1,11 +0,0 @@
$variant: 'dark';
$laptop: 'true';
$trans: 'false';
$black: 'false';
$theme: 'grey';
@import '../../../sass/colors';
@import '../../../sass/variables';
@import '../../../sass/gnome-shell/drawing';
@import '../../../sass/gnome-shell/widgets-3-28';
@import '../../../sass/gnome-shell/extensions-3-28';

View File

@ -1,11 +0,0 @@
$variant: 'dark';
$laptop: 'true';
$trans: 'false';
$black: 'false';
$theme: 'orange';
@import '../../../sass/colors';
@import '../../../sass/variables';
@import '../../../sass/gnome-shell/drawing';
@import '../../../sass/gnome-shell/widgets-3-28';
@import '../../../sass/gnome-shell/extensions-3-28';

View File

@ -1,11 +0,0 @@
$variant: 'dark';
$laptop: 'true';
$trans: 'false';
$black: 'false';
$theme: 'pink';
@import '../../../sass/colors';
@import '../../../sass/variables';
@import '../../../sass/gnome-shell/drawing';
@import '../../../sass/gnome-shell/widgets-3-28';
@import '../../../sass/gnome-shell/extensions-3-28';

View File

@ -1,11 +0,0 @@
$variant: 'dark';
$laptop: 'true';
$trans: 'false';
$black: 'false';
$theme: 'purple';
@import '../../../sass/colors';
@import '../../../sass/variables';
@import '../../../sass/gnome-shell/drawing';
@import '../../../sass/gnome-shell/widgets-3-28';
@import '../../../sass/gnome-shell/extensions-3-28';

View File

@ -1,11 +0,0 @@
$variant: 'dark';
$laptop: 'true';
$trans: 'false';
$black: 'false';
$theme: 'red';
@import '../../../sass/colors';
@import '../../../sass/variables';
@import '../../../sass/gnome-shell/drawing';
@import '../../../sass/gnome-shell/widgets-3-28';
@import '../../../sass/gnome-shell/extensions-3-28';

View File

@ -1,11 +0,0 @@
$variant: 'dark';
$laptop: 'true';
$trans: 'false';
$black: 'false';
$theme: 'yellow';
@import '../../../sass/colors';
@import '../../../sass/variables';
@import '../../../sass/gnome-shell/drawing';
@import '../../../sass/gnome-shell/widgets-3-28';
@import '../../../sass/gnome-shell/extensions-3-28';

View File

@ -1,11 +0,0 @@
$variant: 'dark';
$laptop: 'true';
$trans: 'false';
$black: 'false';
$theme: 'default';
@import '../../../sass/colors';
@import '../../../sass/variables';
@import '../../../sass/gnome-shell/drawing';
@import '../../../sass/gnome-shell/widgets-3-28';
@import '../../../sass/gnome-shell/extensions-3-28';

View File

@ -1,11 +0,0 @@
$variant: 'dark';
$laptop: 'true';
$trans: 'false';
$black: 'false';
$theme: 'blue';
@import '../../../sass/colors';
@import '../../../sass/variables';
@import '../../../sass/gnome-shell/drawing';
@import '../../../sass/gnome-shell/widgets-3-28';
@import '../../../sass/gnome-shell/extensions-3-28';

View File

@ -1,11 +0,0 @@
$variant: 'dark';
$laptop: 'true';
$trans: 'false';
$black: 'false';
$theme: 'green';
@import '../../../sass/colors';
@import '../../../sass/variables';
@import '../../../sass/gnome-shell/drawing';
@import '../../../sass/gnome-shell/widgets-3-28';
@import '../../../sass/gnome-shell/extensions-3-28';

View File

@ -1,11 +0,0 @@
$variant: 'dark';
$laptop: 'true';
$trans: 'false';
$black: 'false';
$theme: 'grey';
@import '../../../sass/colors';
@import '../../../sass/variables';
@import '../../../sass/gnome-shell/drawing';
@import '../../../sass/gnome-shell/widgets-3-28';
@import '../../../sass/gnome-shell/extensions-3-28';

View File

@ -1,11 +0,0 @@
$variant: 'dark';
$laptop: 'true';
$trans: 'false';
$black: 'false';
$theme: 'orange';
@import '../../../sass/colors';
@import '../../../sass/variables';
@import '../../../sass/gnome-shell/drawing';
@import '../../../sass/gnome-shell/widgets-3-28';
@import '../../../sass/gnome-shell/extensions-3-28';

View File

@ -1,11 +0,0 @@
$variant: 'dark';
$laptop: 'true';
$trans: 'false';
$black: 'false';
$theme: 'pink';
@import '../../../sass/colors';
@import '../../../sass/variables';
@import '../../../sass/gnome-shell/drawing';
@import '../../../sass/gnome-shell/widgets-3-28';
@import '../../../sass/gnome-shell/extensions-3-28';

View File

@ -1,11 +0,0 @@
$variant: 'dark';
$laptop: 'true';
$trans: 'false';
$black: 'false';
$theme: 'purple';
@import '../../../sass/colors';
@import '../../../sass/variables';
@import '../../../sass/gnome-shell/drawing';
@import '../../../sass/gnome-shell/widgets-3-28';
@import '../../../sass/gnome-shell/extensions-3-28';

View File

@ -1,11 +0,0 @@
$variant: 'dark';
$laptop: 'true';
$trans: 'false';
$black: 'false';
$theme: 'red';
@import '../../../sass/colors';
@import '../../../sass/variables';
@import '../../../sass/gnome-shell/drawing';
@import '../../../sass/gnome-shell/widgets-3-28';
@import '../../../sass/gnome-shell/extensions-3-28';

View File

@ -1,11 +0,0 @@
$variant: 'dark';
$laptop: 'true';
$trans: 'false';
$black: 'false';
$theme: 'yellow';
@import '../../../sass/colors';
@import '../../../sass/variables';
@import '../../../sass/gnome-shell/drawing';
@import '../../../sass/gnome-shell/widgets-3-28';
@import '../../../sass/gnome-shell/extensions-3-28';

View File

@ -1,11 +0,0 @@
$variant: 'dark';
$laptop: 'true';
$trans: 'false';
$black: 'false';
$theme: 'default';
@import '../../../sass/colors';
@import '../../../sass/variables';
@import '../../../sass/gnome-shell/drawing';
@import '../../../sass/gnome-shell/widgets-3-28';
@import '../../../sass/gnome-shell/extensions-3-28';

View File

@ -1,11 +0,0 @@
$variant: 'dark';
$laptop: 'true';
$trans: 'true';
$black: 'false';
$theme: 'yellow';
@import '../../../sass/colors';
@import '../../../sass/variables';
@import '../../../sass/gnome-shell/drawing';
@import '../../../sass/gnome-shell/widgets-3-28';
@import '../../../sass/gnome-shell/extensions-3-28';

View File

@ -1,11 +0,0 @@
$variant: 'light';
$laptop: 'true';
$trans: 'true';
$black: 'true';
$theme: 'blue';
@import '../../../sass/colors';
@import '../../../sass/variables';
@import '../../../sass/gnome-shell/drawing';
@import '../../../sass/gnome-shell/widgets-3-28';
@import '../../../sass/gnome-shell/extensions-3-28';

View File

@ -1,11 +0,0 @@
$variant: 'light';
$laptop: 'true';
$trans: 'true';
$black: 'true';
$theme: 'green';
@import '../../../sass/colors';
@import '../../../sass/variables';
@import '../../../sass/gnome-shell/drawing';
@import '../../../sass/gnome-shell/widgets-3-28';
@import '../../../sass/gnome-shell/extensions-3-28';

View File

@ -1,11 +0,0 @@
$variant: 'light';
$laptop: 'true';
$trans: 'true';
$black: 'true';
$theme: 'grey';
@import '../../../sass/colors';
@import '../../../sass/variables';
@import '../../../sass/gnome-shell/drawing';
@import '../../../sass/gnome-shell/widgets-3-28';
@import '../../../sass/gnome-shell/extensions-3-28';

View File

@ -1,11 +0,0 @@
$variant: 'light';
$laptop: 'true';
$trans: 'true';
$black: 'true';
$theme: 'orange';
@import '../../../sass/colors';
@import '../../../sass/variables';
@import '../../../sass/gnome-shell/drawing';
@import '../../../sass/gnome-shell/widgets-3-28';
@import '../../../sass/gnome-shell/extensions-3-28';

View File

@ -1,11 +0,0 @@
$variant: 'light';
$laptop: 'true';
$trans: 'true';
$black: 'true';
$theme: 'pink';
@import '../../../sass/colors';
@import '../../../sass/variables';
@import '../../../sass/gnome-shell/drawing';
@import '../../../sass/gnome-shell/widgets-3-28';
@import '../../../sass/gnome-shell/extensions-3-28';

View File

@ -1,11 +0,0 @@
$variant: 'light';
$laptop: 'true';
$trans: 'true';
$black: 'true';
$theme: 'purple';
@import '../../../sass/colors';
@import '../../../sass/variables';
@import '../../../sass/gnome-shell/drawing';
@import '../../../sass/gnome-shell/widgets-3-28';
@import '../../../sass/gnome-shell/extensions-3-28';

View File

@ -1,11 +0,0 @@
$variant: 'light';
$laptop: 'true';
$trans: 'true';
$black: 'true';
$theme: 'red';
@import '../../../sass/colors';
@import '../../../sass/variables';
@import '../../../sass/gnome-shell/drawing';
@import '../../../sass/gnome-shell/widgets-3-28';
@import '../../../sass/gnome-shell/extensions-3-28';

View File

@ -1,11 +0,0 @@
$variant: 'light';
$laptop: 'true';
$trans: 'true';
$black: 'true';
$theme: 'yellow';
@import '../../../sass/colors';
@import '../../../sass/variables';
@import '../../../sass/gnome-shell/drawing';
@import '../../../sass/gnome-shell/widgets-3-28';
@import '../../../sass/gnome-shell/extensions-3-28';

View File

@ -1,11 +0,0 @@
$variant: 'light';
$laptop: 'true';
$trans: 'true';
$black: 'true';
$theme: 'default';
@import '../../../sass/colors';
@import '../../../sass/variables';
@import '../../../sass/gnome-shell/drawing';
@import '../../../sass/gnome-shell/widgets-3-28';
@import '../../../sass/gnome-shell/extensions-3-28';

View File

@ -1,11 +0,0 @@
$variant: 'light';
$laptop: 'true';
$trans: 'true';
$black: 'false';
$theme: 'blue';
@import '../../../sass/colors';
@import '../../../sass/variables';
@import '../../../sass/gnome-shell/drawing';
@import '../../../sass/gnome-shell/widgets-3-28';
@import '../../../sass/gnome-shell/extensions-3-28';

View File

@ -1,11 +0,0 @@
$variant: 'light';
$laptop: 'true';
$trans: 'true';
$black: 'false';
$theme: 'green';
@import '../../../sass/colors';
@import '../../../sass/variables';
@import '../../../sass/gnome-shell/drawing';
@import '../../../sass/gnome-shell/widgets-3-28';
@import '../../../sass/gnome-shell/extensions-3-28';

View File

@ -1,11 +0,0 @@
$variant: 'light';
$laptop: 'true';
$trans: 'true';
$black: 'false';
$theme: 'grey';
@import '../../../sass/colors';
@import '../../../sass/variables';
@import '../../../sass/gnome-shell/drawing';
@import '../../../sass/gnome-shell/widgets-3-28';
@import '../../../sass/gnome-shell/extensions-3-28';

View File

@ -1,11 +0,0 @@
$variant: 'light';
$laptop: 'true';
$trans: 'true';
$black: 'false';
$theme: 'orange';
@import '../../../sass/colors';
@import '../../../sass/variables';
@import '../../../sass/gnome-shell/drawing';
@import '../../../sass/gnome-shell/widgets-3-28';
@import '../../../sass/gnome-shell/extensions-3-28';

View File

@ -1,11 +0,0 @@
$variant: 'light';
$laptop: 'true';
$trans: 'true';
$black: 'false';
$theme: 'pink';
@import '../../../sass/colors';
@import '../../../sass/variables';
@import '../../../sass/gnome-shell/drawing';
@import '../../../sass/gnome-shell/widgets-3-28';
@import '../../../sass/gnome-shell/extensions-3-28';

View File

@ -1,11 +0,0 @@
$variant: 'light';
$laptop: 'true';
$trans: 'true';
$black: 'false';
$theme: 'purple';
@import '../../../sass/colors';
@import '../../../sass/variables';
@import '../../../sass/gnome-shell/drawing';
@import '../../../sass/gnome-shell/widgets-3-28';
@import '../../../sass/gnome-shell/extensions-3-28';

View File

@ -1,11 +0,0 @@
$variant: 'light';
$laptop: 'true';
$trans: 'true';
$black: 'false';
$theme: 'red';
@import '../../../sass/colors';
@import '../../../sass/variables';
@import '../../../sass/gnome-shell/drawing';
@import '../../../sass/gnome-shell/widgets-3-28';
@import '../../../sass/gnome-shell/extensions-3-28';

View File

@ -1,11 +0,0 @@
$variant: 'light';
$laptop: 'true';
$trans: 'false';
$black: 'true';
$theme: 'blue';
@import '../../../sass/colors';
@import '../../../sass/variables';
@import '../../../sass/gnome-shell/drawing';
@import '../../../sass/gnome-shell/widgets-3-28';
@import '../../../sass/gnome-shell/extensions-3-28';

View File

@ -1,11 +0,0 @@
$variant: 'light';
$laptop: 'true';
$trans: 'false';
$black: 'true';
$theme: 'green';
@import '../../../sass/colors';
@import '../../../sass/variables';
@import '../../../sass/gnome-shell/drawing';
@import '../../../sass/gnome-shell/widgets-3-28';
@import '../../../sass/gnome-shell/extensions-3-28';

View File

@ -1,11 +0,0 @@
$variant: 'light';
$laptop: 'true';
$trans: 'false';
$black: 'true';
$theme: 'grey';
@import '../../../sass/colors';
@import '../../../sass/variables';
@import '../../../sass/gnome-shell/drawing';
@import '../../../sass/gnome-shell/widgets-3-28';
@import '../../../sass/gnome-shell/extensions-3-28';

View File

@ -1,11 +0,0 @@
$variant: 'light';
$laptop: 'true';
$trans: 'false';
$black: 'true';
$theme: 'orange';
@import '../../../sass/colors';
@import '../../../sass/variables';
@import '../../../sass/gnome-shell/drawing';
@import '../../../sass/gnome-shell/widgets-3-28';
@import '../../../sass/gnome-shell/extensions-3-28';

View File

@ -1,11 +0,0 @@
$variant: 'light';
$laptop: 'true';
$trans: 'false';
$black: 'true';
$theme: 'pink';
@import '../../../sass/colors';
@import '../../../sass/variables';
@import '../../../sass/gnome-shell/drawing';
@import '../../../sass/gnome-shell/widgets-3-28';
@import '../../../sass/gnome-shell/extensions-3-28';

View File

@ -1,11 +0,0 @@
$variant: 'light';
$laptop: 'true';
$trans: 'false';
$black: 'true';
$theme: 'purple';
@import '../../../sass/colors';
@import '../../../sass/variables';
@import '../../../sass/gnome-shell/drawing';
@import '../../../sass/gnome-shell/widgets-3-28';
@import '../../../sass/gnome-shell/extensions-3-28';

View File

@ -1,11 +0,0 @@
$variant: 'light';
$laptop: 'true';
$trans: 'false';
$black: 'true';
$theme: 'red';
@import '../../../sass/colors';
@import '../../../sass/variables';
@import '../../../sass/gnome-shell/drawing';
@import '../../../sass/gnome-shell/widgets-3-28';
@import '../../../sass/gnome-shell/extensions-3-28';

View File

@ -1,11 +0,0 @@
$variant: 'light';
$laptop: 'true';
$trans: 'false';
$black: 'true';
$theme: 'orange';
@import '../../../sass/colors';
@import '../../../sass/variables';
@import '../../../sass/gnome-shell/drawing';
@import '../../../sass/gnome-shell/widgets-3-28';
@import '../../../sass/gnome-shell/extensions-3-28';

View File

@ -1,11 +0,0 @@
$variant: 'light';
$laptop: 'true';
$trans: 'false';
$black: 'true';
$theme: 'default';
@import '../../../sass/colors';
@import '../../../sass/variables';
@import '../../../sass/gnome-shell/drawing';
@import '../../../sass/gnome-shell/widgets-3-28';
@import '../../../sass/gnome-shell/extensions-3-28';

View File

@ -1,11 +0,0 @@
$variant: 'light';
$laptop: 'true';
$trans: 'false';
$black: 'true';
$theme: 'blue';
@import '../../../sass/colors';
@import '../../../sass/variables';
@import '../../../sass/gnome-shell/drawing';
@import '../../../sass/gnome-shell/widgets-3-28';
@import '../../../sass/gnome-shell/extensions-3-28';

Some files were not shown because too many files have changed in this diff Show More