Skip to content

Commit

Permalink
Merge branch 'master' of github.com:vinceliuice/Matcha-gtk-theme
Browse files Browse the repository at this point in the history
  • Loading branch information
vinceliuice committed Aug 23, 2021
2 parents 977e2d0 + 56a7129 commit e2c6a38
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,12 @@ install_gdm() {
echo
echo "Installing ${2}${3}${4} gdm theme..."

if [[ -f "$GS_THEME_FILE" ]] && command -v glib-compile-resources >/dev/null ; then
if ! command -v glib-compile-resources >/dev/null ; then
echo "glib-compile-resources not found! Exit."
exit 1
fi

if [[ -f "$GS_THEME_FILE" ]] ; then
echo "Installing '$GS_THEME_FILE'..."
cp -an "$GS_THEME_FILE" "$GS_THEME_FILE.bak"
glib-compile-resources \
Expand Down

0 comments on commit e2c6a38

Please sign in to comment.