fix(deck): fix Handheld Controller Glyphs theme folder casing (#1096)

* fix(deck): Change Handheld Controller Glyphs theme folder casing

* fix rm command

* fix casing in third-party-css-loader-update
This commit is contained in:
Victor Borges 2024-05-10 23:28:49 -03:00 committed by GitHub
parent e61cd2424e
commit 6181223d31
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 5 additions and 5 deletions

View File

@ -34,8 +34,8 @@ install-hhd-xbox-glyph-theme:
install-hhd-controller-glyph-theme:
#!/usr/bin/bash
if [ -d "$HOME/homebrew/themes" ]; then
rm -rf "$HOME/homebrew/themes/Handheld-Controller-Glyphs"
git clone https://github.com/victor-borges/handheld-controller-glyphs.git --single-branch "$HOME/homebrew/themes/Handheld-Controller-Glyphs"
rm -rf "$HOME/homebrew/themes/handheld-controller-glyphs"
git clone https://github.com/victor-borges/handheld-controller-glyphs.git --single-branch "$HOME/homebrew/themes/handheld-controller-glyphs"
else
echo 'Please install Decky Loader & CSS Loader first'
fi

View File

@ -36,9 +36,9 @@ if [ -d "$HOME/homebrew/themes/PS5-to-Xbox-glyphs/.git" ]; then
fi
# Handheld Controller Glyphs
if [ -d "$HOME/homebrew/themes/Handheld-Controller-Glyphs/.git" ]; then
cd "$HOME/homebrew/themes/Handheld-Controller-Glyphs"
echo "Handheld-Controller-Glyphs theme found, pulling latest with git."
if [ -d "$HOME/homebrew/themes/handheld-controller-glyphs/.git" ]; then
cd "$HOME/homebrew/themes/handheld-controller-glyphs"
echo "handheld-controller-glyphs theme found, pulling latest with git."
git pull
echo "Update complete."
fi