#!/bin/sh -e # SPDX-License-Identifier: GPL-3.0-or-later # # SPDX-FileCopyrightText: 2023 PeppermintOS Team (peppermintosteam@proton.me) # This script removes unwanted software after Debian installation. # Remove unwanted packages apt purge --autoremove -y \ quassel \ thunderbird \ mpv \ smtube \ smplayer \ audacious \ connman \ deluge \ galculator # Clear package cache apt clean # Update system packages apt update # Upgrade system packages apt upgrade -y