From 71b9acb50bcefcf26e362e20bad1303619ea9201 Mon Sep 17 00:00:00 2001 From: Your Name Date: Sat, 17 Feb 2024 15:44:25 -0700 Subject: [PATCH] d --- gentoo-kde.sh | 18 ++++++------------ 1 file changed, 6 insertions(+), 12 deletions(-) diff --git a/gentoo-kde.sh b/gentoo-kde.sh index b955288..5b69ed4 100644 --- a/gentoo-kde.sh +++ b/gentoo-kde.sh @@ -475,6 +475,8 @@ tweaks() { echo "[5] Upgrade OS and take Snapshot" echo "[6] Initialize Disk" echo "[7] Remove old Snapshots" + echo "[8] Install Steam" + echo "[9] Configure Hibernation" echo read -p 'Your Choice: ' choice if [[ $choice = 1 ]]; then @@ -510,6 +512,10 @@ tweaks() { menu elif [[ $choice = 7 ]]; then remove-snapshots + elif [[ $choice = 8 ]]; then + installSteam + elif [[ $choice = 9 ]]; then + hibernation else tweaks fi @@ -700,30 +706,18 @@ if [ "$1" = "desktop" ]; then desktop elif [ "$1" = "tar" ]; then create-os-snapshots "$3" "$2" -elif [ "$1" = "upgrade-system" ]; then - upgrade-system elif [ "$1" = "wifi" ]; then wifi elif [ "$1" = "accounts" ]; then accounts -elif [ "$1" = "hibernate" ]; then - hibernate elif [ "$1" = "bootloader" ]; then bootloader "$2" "$3" "$4" -elif [ "$1" = "snapshot" ]; then - snapshots -elif [ "$1" = "steam" ]; then - installSteam elif [ "$1" = "install-packages" ]; then installPackages -elif [ "$1" = "cockpit" ]; then - installCockpit elif [ "$1" = "btrfs-tweaks" ]; then btrfs-tweaks elif [ "$1" = "compile-kernel" ]; then compile-kernel -elif [ "$1" = "remove-snapshot" ]; then - remove-snapshots elif [ "$1" = "help" ]; then show-help else