Fixed color for m

This commit is contained in:
2024-01-07 23:06:59 +00:00
parent 1642810198
commit 2813fcd2ce
2 changed files with 9 additions and 9 deletions

View File

@@ -1,15 +1,15 @@
#! /bin/bash
echo -e "\e[31m[+] Upgrading...\e[0m"
echo -e "\e[32m[+] Upgrading...\e[0m"
sudo apt update
sudo apt upgrade
sudo apt dist-upgrade
sudo apt autoremove
sudo apt autoclean
echo -e "\e[31m[+] Removing logs older than 7d...\e[0m"
echo -e "\e[32m[+] Removing logs older than 7d...\e[0m"
sudo journalctl --vacuum-time=7d
echo -e "\e[31m[i] Cleaning flatpak...:\e[0m"
echo -e "\e[32m[i] Cleaning flatpak...:\e[0m"
flatpak remove --unused
read -p "Press enter to exit."