#!/bin/bash

clear
echo "Attempting to fix packages..."
sudo echo
sudo dpkg -configure -a
sudo apt clean
sudo apt update --fix-missing
sudo apt install -f
sudo dpkg -configure -a 
echo 'Done.'
read -n1
