Skip to content

Commit 9e227a8

Browse files
committed
Fixed gnome-shell 47 issues
1 parent b5f2a53 commit 9e227a8

21 files changed

+18844
-12
lines changed

install.sh

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -753,7 +753,9 @@ fi
753753
if [[ "$(command -v gnome-shell)" ]]; then
754754
echo; prompt -w "Desktop version: '$(gnome-shell --version)'";
755755
SHELL_VERSION="$(gnome-shell --version | cut -d ' ' -f 3 | cut -d . -f -1)"
756-
if [[ "${SHELL_VERSION:-}" -ge "46" ]]; then
756+
if [[ "${SHELL_VERSION:-}" -ge "47" ]]; then
757+
GS_VERSION="47-0"
758+
elif [[ "${SHELL_VERSION:-}" -ge "46" ]]; then
757759
GS_VERSION="46-0"
758760
elif [[ "${SHELL_VERSION:-}" -ge "44" ]]; then
759761
GS_VERSION="44-0"
@@ -764,9 +766,9 @@ if [[ "$(command -v gnome-shell)" ]]; then
764766
else
765767
GS_VERSION="3-28"
766768
fi
767-
else
768-
prompt -e "'gnome-shell' not found, using styles for last gnome-shell version available."
769-
GS_VERSION="46-0"
769+
else
770+
prompt -e "'gnome-shell' not found, using styles for last gnome-shell version available."
771+
GS_VERSION="47-0"
770772
fi
771773

772774
if [[ "${gdm:-}" != 'true' && "${revert:-}" != 'true' ]]; then

parse-sass.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,8 @@ for color in "${_COLOR_VARIANTS[@]}"; do
6565
echo "==> Generating the 44.0 gnome-shell${color}${trans}${theme}.css..."
6666
sassc $SASSC_OPT src/main/gnome-shell/shell-46-0/gnome-shell${color}${trans}${theme}.{scss,css}
6767
echo "==> Generating the 46.0 gnome-shell${color}${trans}${theme}.css..."
68+
sassc $SASSC_OPT src/main/gnome-shell/shell-47-0/gnome-shell${color}${trans}${theme}.{scss,css}
69+
echo "==> Generating the 47.0 gnome-shell${color}${trans}${theme}.css..."
6870
sassc $SASSC_OPT src/main/cinnamon/cinnamon${color}${trans}${theme}.{scss,css}
6971
echo "==> Generating the cinnamon${color}${trans}${theme}.css..."
7072
done

0 commit comments

Comments
 (0)