Hyprland-dotfiles/.install/settings.sh

17 lines
498 B
Bash
Raw Normal View History

2024-03-17 05:47:38 -04:00
if [ "$restored" == "1" ]; then
2024-05-01 06:18:47 -04: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 05:47:38 -04: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