diff --git a/debian.sh b/debian.sh index e75f16b..56d1400 100755 --- a/debian.sh +++ b/debian.sh @@ -189,7 +189,7 @@ desktop(){ systemctl disable --now rpbind systemctl disable --now bluetooth apt -y purge apparmor - apt remove unattended-upgrades chromium firefox-esr epiphany-browser epiphany-browser-data -y + apt remove unattended-upgrades chromium chromium-common chromium-sandbox firefox-esr epiphany-browser epiphany-browser-data -y apt autoremove -y } @@ -402,9 +402,9 @@ services() { initialize-disk() { parted /dev/$HARD_DISK mklabel gpt parted /dev/$HARD_DISK mkpart primary fat32 1MiB 200MiB - parted /dev/$HARD_DISK mkpart primary ext3 200MiB 500MiB + parted /dev/$HARD_DISK mkpart primary ext3 200MiB 700MiB parted /dev/$HARD_DISK set 1 esp on - parted /dev/$HARD_DISK mkpart P2 ext3 500MiB 100% + parted /dev/$HARD_DISK mkpart P2 ext3 700MiB 100% printf "$DISK_PASSWORD\n$DISK_PASSWORD" | cryptsetup luksFormat ${BTRFS} printf "$DISK_PASSWORD" | cryptsetup open ${BTRFS} root echo @@ -463,10 +463,3 @@ elif [ "$1" = "btrfs-tweaks" ]; then btrfs-tweaks elif [ "$1" = "restore" ]; then net-restore "$2" "$3" "$4" -elif [ "$1" = "remove-snapshot" ]; then - remove-snapshots -elif [ "$1" = "help" ]; then - show-help -else - show-help -fi