Add Gnome-shell 40.0 support!
This commit is contained in:
parent
75e32c6314
commit
c232862416
12
install.sh
12
install.sh
@ -110,10 +110,6 @@ else
|
|||||||
|
|
||||||
prompt -w "Removing the old '${name}' themes..."
|
prompt -w "Removing the old '${name}' themes..."
|
||||||
|
|
||||||
if [[ "${GNOME_VERSION}" == 'new' ]]; then
|
|
||||||
prompt -w "SORRY: WhiteSur Shell theme for GNOME 40 is in development and not yet available"
|
|
||||||
fi
|
|
||||||
|
|
||||||
remove_themes; customize_theme; avoid_variant_duplicates; echo
|
remove_themes; customize_theme; avoid_variant_duplicates; echo
|
||||||
|
|
||||||
prompt -i "Installing '${name}' themes in '${dest}'..."
|
prompt -i "Installing '${name}' themes in '${dest}'..."
|
||||||
@ -126,11 +122,11 @@ else
|
|||||||
prompt -i "Nautilus variant : ${nautilus_style}"
|
prompt -i "Nautilus variant : ${nautilus_style}"
|
||||||
echo; install_themes
|
echo; install_themes
|
||||||
|
|
||||||
if [[ "$(which xfce4-session 2> /dev/null)" ]]; then
|
# if [[ "$(which xfce4-session 2> /dev/null)" ]]; then
|
||||||
msg="XFCE: you may need to logout after changing your theme to fix your panel opacity."
|
# msg="XFCE: you may need to logout after changing your theme to fix your panel opacity."
|
||||||
fi
|
# fi
|
||||||
|
|
||||||
echo; prompt -s "Done!"; echo; prompt -w "${msg}"; echo
|
echo; prompt -s "Done!"; echo; prompt -w "${msg}"; echo
|
||||||
|
|
||||||
[[ -x /usr/bin/notify-send ]] && notify-send "'${name}' theme has been installed. Enjoy!" "${msg}" -i "weather-snow-symbolic"
|
[[ -x /usr/bin/notify-send ]] && notify-send "'${name}' theme has been installed. Enjoy!" "${msg}" -i "dialog-information-symbolic"
|
||||||
fi
|
fi
|
||||||
|
@ -90,7 +90,13 @@ install_shelly() {
|
|||||||
mkdir -p "${TARGET_DIR}/assets"
|
mkdir -p "${TARGET_DIR}/assets"
|
||||||
cp -r "${THEME_SRC_DIR}/assets/gnome-shell/icons" "${TARGET_DIR}"
|
cp -r "${THEME_SRC_DIR}/assets/gnome-shell/icons" "${TARGET_DIR}"
|
||||||
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}"
|
||||||
sassc ${SASSC_OPT} "${THEME_SRC_DIR}/main/gnome-shell/gnome-shell${color}${opacity}${alt}${theme}.scss" "${TARGET_DIR}/gnome-shell.css"
|
|
||||||
|
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"
|
||||||
|
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"
|
||||||
|
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"
|
||||||
|
|
||||||
if [[ "${theme}" != '' ]]; then
|
if [[ "${theme}" != '' ]]; then
|
||||||
@ -217,7 +223,7 @@ install_themes() {
|
|||||||
start_animation
|
start_animation
|
||||||
process_ids=()
|
process_ids=()
|
||||||
|
|
||||||
[[ "${GNOME_VERSION}" != 'new' ]] && install_beggy
|
install_beggy
|
||||||
|
|
||||||
for opacity in "${opacities[@]}"; do
|
for opacity in "${opacities[@]}"; do
|
||||||
for alt in "${alts[@]}"; do
|
for alt in "${alts[@]}"; do
|
||||||
@ -228,10 +234,8 @@ install_themes() {
|
|||||||
install_theemy "${color}" "${opacity}" "${alt}" "${theme}" "${icon}" &
|
install_theemy "${color}" "${opacity}" "${alt}" "${theme}" "${icon}" &
|
||||||
process_ids+=("${!}")
|
process_ids+=("${!}")
|
||||||
|
|
||||||
if [[ "${GNOME_VERSION}" != 'new' ]]; then
|
install_shelly "${color}" "${opacity}" "${alt}" "${theme}" "${icon}" &
|
||||||
install_shelly "${color}" "${opacity}" "${alt}" "${theme}" "${icon}" &
|
process_ids+=("${!}")
|
||||||
process_ids+=("${!}")
|
|
||||||
fi
|
|
||||||
done
|
done
|
||||||
done
|
done
|
||||||
done
|
done
|
||||||
|
67
parse-sass.sh
Executable file
67
parse-sass.sh
Executable file
@ -0,0 +1,67 @@
|
|||||||
|
#! /usr/bin/env bash
|
||||||
|
|
||||||
|
# Check command availability
|
||||||
|
function has_command() {
|
||||||
|
command -v $1 > /dev/null
|
||||||
|
}
|
||||||
|
|
||||||
|
if [ ! "$(which sassc 2> /dev/null)" ]; then
|
||||||
|
echo sassc needs to be installed to generate the css.
|
||||||
|
if has_command zypper; then
|
||||||
|
sudo zypper in sassc
|
||||||
|
elif has_command apt; then
|
||||||
|
sudo apt install sassc
|
||||||
|
elif has_command dnf; then
|
||||||
|
sudo dnf install -y sassc
|
||||||
|
elif has_command yum; then
|
||||||
|
sudo yum install sassc
|
||||||
|
elif has_command pacman; then
|
||||||
|
sudo pacman -S --noconfirm sassc
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
SASSC_OPT="-M -t expanded"
|
||||||
|
|
||||||
|
_COLOR_VARIANTS=('-light' '-dark')
|
||||||
|
if [ ! -z "${COLOR_VARIANTS:-}" ]; then
|
||||||
|
IFS=', ' read -r -a _COLOR_VARIANTS <<< "${COLOR_VARIANTS:-}"
|
||||||
|
fi
|
||||||
|
|
||||||
|
_TRANS_VARIANTS=('' '-solid')
|
||||||
|
if [ ! -z "${TRANS_VARIANTS:-}" ]; then
|
||||||
|
IFS=', ' read -r -a _TRANS_VARIANTS <<< "${TRANS_VARIANTS:-}"
|
||||||
|
fi
|
||||||
|
|
||||||
|
_ALT_VARIANTS=('' '-alt')
|
||||||
|
if [ ! -z "${TRANS_VARIANTS:-}" ]; then
|
||||||
|
IFS=', ' read -r -a _TRANS_VARIANTS <<< "${TRANS_VARIANTS:-}"
|
||||||
|
fi
|
||||||
|
|
||||||
|
_THEME_VARIANTS=('' '-blue' '-purple' '-pink' '-red' '-orange' '-yellow' '-green' '-grey')
|
||||||
|
if [ ! -z "${THEME_VARIANTS:-}" ]; then
|
||||||
|
IFS=', ' read -r -a _THEME_VARIANTS <<< "${THEME_VARIANTS:-}"
|
||||||
|
fi
|
||||||
|
|
||||||
|
#for color in "${_COLOR_VARIANTS[@]}"; do
|
||||||
|
# for trans in "${_TRANS_VARIANTS[@]}"; do
|
||||||
|
# for theme in "${_THEME_VARIANTS[@]}"; do
|
||||||
|
# sassc $SASSC_OPT src/main/gtk-3.0/gtk${color}${trans}${theme}.{scss,css}
|
||||||
|
# echo "==> Generating the gtk${color}${trans}${theme}.css..."
|
||||||
|
# sassc $SASSC_OPT src/main/cinnamon/cinnamon${color}${trans}${theme}.{scss,css}
|
||||||
|
# echo "==> Generating the cinnamon${color}${trans}${theme}.css..."
|
||||||
|
# done
|
||||||
|
# done
|
||||||
|
#done
|
||||||
|
|
||||||
|
for color in "${_COLOR_VARIANTS[@]}"; do
|
||||||
|
for trans in "${_TRANS_VARIANTS[@]}"; do
|
||||||
|
for alt in "${_ALT_VARIANTS[@]}"; do
|
||||||
|
for theme in "${_THEME_VARIANTS[@]}"; do
|
||||||
|
sassc $SASSC_OPT src/main/gnome-shell/shell-3-28/gnome-shell${color}${trans}${alt}${theme}.{scss,css}
|
||||||
|
echo "==> Generating the shell-3-28 gnome-shell${color}${trans}${alt}${theme}.css..."
|
||||||
|
sassc $SASSC_OPT src/main/gnome-shell/shell-40-0/gnome-shell${color}${trans}${alt}${theme}.{scss,css}
|
||||||
|
echo "==> Generating the shell-40-0 gnome-shell${color}${trans}${alt}${theme}.css..."
|
||||||
|
done
|
||||||
|
done
|
||||||
|
done
|
||||||
|
done
|
@ -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';
|
|
||||||
@import '../../sass/gnome-shell/extensions';
|
|
@ -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';
|
|
||||||
@import '../../sass/gnome-shell/extensions';
|
|
@ -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';
|
|
||||||
@import '../../sass/gnome-shell/extensions';
|
|
@ -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';
|
|
||||||
@import '../../sass/gnome-shell/extensions';
|
|
@ -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';
|
|
||||||
@import '../../sass/gnome-shell/extensions';
|
|
@ -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';
|
|
||||||
@import '../../sass/gnome-shell/extensions';
|
|
@ -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';
|
|
||||||
@import '../../sass/gnome-shell/extensions';
|
|
@ -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';
|
|
||||||
@import '../../sass/gnome-shell/extensions';
|
|
@ -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';
|
|
||||||
@import '../../sass/gnome-shell/extensions';
|
|
@ -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';
|
|
||||||
@import '../../sass/gnome-shell/extensions';
|
|
@ -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';
|
|
||||||
@import '../../sass/gnome-shell/extensions';
|
|
@ -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';
|
|
||||||
@import '../../sass/gnome-shell/extensions';
|
|
@ -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';
|
|
||||||
@import '../../sass/gnome-shell/extensions';
|
|
@ -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';
|
|
||||||
@import '../../sass/gnome-shell/extensions';
|
|
@ -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';
|
|
||||||
@import '../../sass/gnome-shell/extensions';
|
|
@ -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';
|
|
||||||
@import '../../sass/gnome-shell/extensions';
|
|
@ -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';
|
|
||||||
@import '../../sass/gnome-shell/extensions';
|
|
@ -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';
|
|
||||||
@import '../../sass/gnome-shell/extensions';
|
|
@ -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';
|
|
||||||
@import '../../sass/gnome-shell/extensions';
|
|
@ -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';
|
|
||||||
@import '../../sass/gnome-shell/extensions';
|
|
@ -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';
|
|
||||||
@import '../../sass/gnome-shell/extensions';
|
|
@ -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';
|
|
||||||
@import '../../sass/gnome-shell/extensions';
|
|
@ -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';
|
|
||||||
@import '../../sass/gnome-shell/extensions';
|
|
@ -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';
|
|
||||||
@import '../../sass/gnome-shell/extensions';
|
|
@ -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';
|
|
||||||
@import '../../sass/gnome-shell/extensions';
|
|
@ -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';
|
|
||||||
@import '../../sass/gnome-shell/extensions';
|
|
@ -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';
|
|
||||||
@import '../../sass/gnome-shell/extensions';
|
|
@ -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';
|
|
||||||
@import '../../sass/gnome-shell/extensions';
|
|
@ -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';
|
|
||||||
@import '../../sass/gnome-shell/extensions';
|
|
@ -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';
|
|
||||||
@import '../../sass/gnome-shell/extensions';
|
|
@ -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';
|
|
||||||
@import '../../sass/gnome-shell/extensions';
|
|
@ -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';
|
|
||||||
@import '../../sass/gnome-shell/extensions';
|
|
@ -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';
|
|
||||||
@import '../../sass/gnome-shell/extensions';
|
|
@ -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';
|
|
||||||
@import '../../sass/gnome-shell/extensions';
|
|
@ -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';
|
|
||||||
@import '../../sass/gnome-shell/extensions';
|
|
@ -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';
|
|
||||||
@import '../../sass/gnome-shell/extensions';
|
|
@ -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';
|
|
||||||
@import '../../sass/gnome-shell/extensions';
|
|
@ -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';
|
|
||||||
@import '../../sass/gnome-shell/extensions';
|
|
@ -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';
|
|
||||||
@import '../../sass/gnome-shell/extensions';
|
|
@ -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';
|
|
||||||
@import '../../sass/gnome-shell/extensions';
|
|
@ -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';
|
|
||||||
@import '../../sass/gnome-shell/extensions';
|
|
@ -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';
|
|
||||||
@import '../../sass/gnome-shell/extensions';
|
|
@ -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';
|
|
||||||
@import '../../sass/gnome-shell/extensions';
|
|
@ -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';
|
|
||||||
@import '../../sass/gnome-shell/extensions';
|
|
@ -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';
|
|
||||||
@import '../../sass/gnome-shell/extensions';
|
|
@ -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';
|
|
||||||
@import '../../sass/gnome-shell/extensions';
|
|
@ -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';
|
|
||||||
@import '../../sass/gnome-shell/extensions';
|
|
@ -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';
|
|
||||||
@import '../../sass/gnome-shell/extensions';
|
|
@ -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';
|
|
||||||
@import '../../sass/gnome-shell/extensions';
|
|
@ -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';
|
|
||||||
@import '../../sass/gnome-shell/extensions';
|
|
@ -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';
|
|
||||||
@import '../../sass/gnome-shell/extensions';
|
|
@ -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';
|
|
||||||
@import '../../sass/gnome-shell/extensions';
|
|
@ -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';
|
|
||||||
@import '../../sass/gnome-shell/extensions';
|
|
@ -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';
|
|
||||||
@import '../../sass/gnome-shell/extensions';
|
|
@ -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';
|
|
||||||
@import '../../sass/gnome-shell/extensions';
|
|
@ -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';
|
|
||||||
@import '../../sass/gnome-shell/extensions';
|
|
@ -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';
|
|
||||||
@import '../../sass/gnome-shell/extensions';
|
|
@ -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';
|
|
||||||
@import '../../sass/gnome-shell/extensions';
|
|
@ -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';
|
|
||||||
@import '../../sass/gnome-shell/extensions';
|
|
@ -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';
|
|
||||||
@import '../../sass/gnome-shell/extensions';
|
|
@ -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';
|
|
||||||
@import '../../sass/gnome-shell/extensions';
|
|
@ -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';
|
|
||||||
@import '../../sass/gnome-shell/extensions';
|
|
@ -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';
|
|
||||||
@import '../../sass/gnome-shell/extensions';
|
|
@ -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';
|
|
||||||
@import '../../sass/gnome-shell/extensions';
|
|
@ -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';
|
|
||||||
@import '../../sass/gnome-shell/extensions';
|
|
@ -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';
|
|
||||||
@import '../../sass/gnome-shell/extensions';
|
|
@ -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';
|
|
||||||
@import '../../sass/gnome-shell/extensions';
|
|
@ -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';
|
|
||||||
@import '../../sass/gnome-shell/extensions';
|
|
@ -1,11 +0,0 @@
|
|||||||
$variant: 'light';
|
|
||||||
$laptop: 'true';
|
|
||||||
$trans: 'false';
|
|
||||||
$black: 'true';
|
|
||||||
$theme: 'yellow';
|
|
||||||
|
|
||||||
@import '../../sass/colors';
|
|
||||||
@import '../../sass/variables';
|
|
||||||
@import '../../sass/gnome-shell/drawing';
|
|
||||||
@import '../../sass/gnome-shell/widgets';
|
|
||||||
@import '../../sass/gnome-shell/extensions';
|
|
@ -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';
|
|
||||||
@import '../../sass/gnome-shell/extensions';
|
|
@ -1,11 +0,0 @@
|
|||||||
$variant: 'light';
|
|
||||||
$laptop: 'true';
|
|
||||||
$trans: 'true';
|
|
||||||
$black: 'false';
|
|
||||||
$theme: 'yellow';
|
|
||||||
|
|
||||||
@import '../../sass/colors';
|
|
||||||
@import '../../sass/variables';
|
|
||||||
@import '../../sass/gnome-shell/drawing';
|
|
||||||
@import '../../sass/gnome-shell/widgets';
|
|
||||||
@import '../../sass/gnome-shell/extensions';
|
|
@ -1,11 +0,0 @@
|
|||||||
$variant: 'light';
|
|
||||||
$laptop: 'true';
|
|
||||||
$trans: 'true';
|
|
||||||
$black: 'false';
|
|
||||||
$theme: 'default';
|
|
||||||
|
|
||||||
@import '../../sass/colors';
|
|
||||||
@import '../../sass/variables';
|
|
||||||
@import '../../sass/gnome-shell/drawing';
|
|
||||||
@import '../../sass/gnome-shell/widgets';
|
|
||||||
@import '../../sass/gnome-shell/extensions';
|
|
@ -0,0 +1,11 @@
|
|||||||
|
$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';
|
@ -0,0 +1,11 @@
|
|||||||
|
$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';
|
@ -0,0 +1,11 @@
|
|||||||
|
$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';
|
@ -0,0 +1,11 @@
|
|||||||
|
$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';
|
@ -0,0 +1,11 @@
|
|||||||
|
$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';
|
@ -0,0 +1,11 @@
|
|||||||
|
$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';
|
@ -0,0 +1,11 @@
|
|||||||
|
$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';
|
@ -0,0 +1,11 @@
|
|||||||
|
$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';
|
11
src/main/gnome-shell/shell-3-28/gnome-shell-dark-alt.scss
Normal file
11
src/main/gnome-shell/shell-3-28/gnome-shell-dark-alt.scss
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
$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';
|
11
src/main/gnome-shell/shell-3-28/gnome-shell-dark-blue.scss
Normal file
11
src/main/gnome-shell/shell-3-28/gnome-shell-dark-blue.scss
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
$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';
|
11
src/main/gnome-shell/shell-3-28/gnome-shell-dark-green.scss
Normal file
11
src/main/gnome-shell/shell-3-28/gnome-shell-dark-green.scss
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
$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';
|
11
src/main/gnome-shell/shell-3-28/gnome-shell-dark-grey.scss
Normal file
11
src/main/gnome-shell/shell-3-28/gnome-shell-dark-grey.scss
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
$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';
|
11
src/main/gnome-shell/shell-3-28/gnome-shell-dark-orange.scss
Normal file
11
src/main/gnome-shell/shell-3-28/gnome-shell-dark-orange.scss
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
$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';
|
11
src/main/gnome-shell/shell-3-28/gnome-shell-dark-pink.scss
Normal file
11
src/main/gnome-shell/shell-3-28/gnome-shell-dark-pink.scss
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
$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';
|
11
src/main/gnome-shell/shell-3-28/gnome-shell-dark-purple.scss
Normal file
11
src/main/gnome-shell/shell-3-28/gnome-shell-dark-purple.scss
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
$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';
|
11
src/main/gnome-shell/shell-3-28/gnome-shell-dark-red.scss
Normal file
11
src/main/gnome-shell/shell-3-28/gnome-shell-dark-red.scss
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
$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';
|
@ -0,0 +1,11 @@
|
|||||||
|
$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';
|
@ -0,0 +1,11 @@
|
|||||||
|
$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';
|
@ -0,0 +1,11 @@
|
|||||||
|
$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';
|
@ -0,0 +1,11 @@
|
|||||||
|
$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';
|
@ -0,0 +1,11 @@
|
|||||||
|
$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';
|
@ -0,0 +1,11 @@
|
|||||||
|
$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';
|
@ -0,0 +1,11 @@
|
|||||||
|
$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';
|
@ -0,0 +1,11 @@
|
|||||||
|
$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';
|
@ -0,0 +1,11 @@
|
|||||||
|
$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';
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user