17 lines
498 B
Bash
Raw Normal View History

2024-03-17 10:47:38 +01:00
if [ "$restored" == "1" ]; then
2024-05-01 12:18:47 +02:00
if [ -f ~/dotfiles/.settings/settings.json ] ;then
echo -e "${GREEN}"
figlet "Restore Settings"
echo -e "${NONE}"
python .install/restore.py
fi
2024-03-17 10:47:38 +01:00
else
if [ -f ~/dotfiles/.settings/settings.json ] ;then
rm ~/dotfiles/.settings/settings.json
echo ":: settings.json removed"
fi
if [ -f ~/.cache/.themestyle.sh ] ;then
rm ~/.cache/.themestyle.sh
echo ":: .themestyle.sh removed"
fi
fi