bazzite/system_files/desktop/shared/usr/libexec/topgrade/third-party-css-loader-update
Kyle Gospodnetich 7ab2e88b40 chore: Make CSS Loader theme updater slightly less noisy
chore: Remove unneeded overrides, disable notifications for ublue-update by default
chore(readme): Add TuneD & ublue-update build status
chore(readme): Mention CSS loader theme ujust commands
2024-01-26 14:26:28 -08:00

39 lines
998 B
Bash
Executable File

#!/usr/bin/bash
shopt -s nullglob
echo "Looking for updates..."
# Adwaita for Steam
if [ -d "$HOME/homebrew/themes/Adwaita-for-Steam/.git" ]; then
cd "$HOME/homebrew/themes/Adwaita-for-Steam"
echo "Adwaita for Steam theme found, pulling latest with git."
git pull
echo "Update complete."
fi
# ROG Ally Theme
if [ -d "$HOME/homebrew/themes/SBP-ROG-Ally/.git" ]; then
cd "$HOME/homebrew/themes/SBP-ROG-Ally"
echo "SBP-ROG-Ally theme found, pulling latest with git."
git pull
echo "Update complete."
fi
# Legion GO Theme
if [ -d "$HOME/homebrew/themes/SBP-Legion-Go-Theme/.git" ]; then
cd "$HOME/homebrew/themes/SBP-Legion-Go-Theme"
echo "SBP-Legion-Go-Theme theme found, pulling latest with git."
git pull
echo "Update complete."
fi
# HHD Theme
if [ -d "$HOME/homebrew/themes/PS5-to-Xbox-glyphs/.git" ]; then
cd "$HOME/homebrew/themes/PS5-to-Xbox-glyphs"
echo "PS5 to Xbox Glyphs theme found, pulling latest with git."
git pull
echo "Update complete."
fi
exit 0