Update gentoo.sh

This commit is contained in:
verita84 2023-11-14 22:28:01 +00:00
parent 38846b2e5f
commit 37be002c45

View File

@ -31,10 +31,10 @@ echo
HARD_DISK=$2 HARD_DISK=$2
###################################### ######################################
USER="verita84" USER="verita84"
USER_PASSWORD="123456" USER_PASSWORD="REM&rap234"
ROOT_PASSWORD="123456" ROOT_PASSWORD="REM&rap234"
WIRELESS_PASSWORD='123456' WIRELESS_PASSWORD='815721984'
SSID='123456' SSID='Tribble'
WIRELESS_INTERFACE='wlan0' WIRELESS_INTERFACE='wlan0'
COMPRESSION='compress=zstd:10' COMPRESSION='compress=zstd:10'
FLATPAKS+=() FLATPAKS+=()
@ -619,6 +619,10 @@ menu() {
} }
set-devices() { set-devices() {
if [ -f "/tmp/disk" ]; then
HARD_DISK=$(cat /tmp/disk | head -1)
ROOT_NAME=$(cat /tmp/disk | tail -1)
else
i=0 i=0
while [ $i != "n" ]; do while [ $i != "n" ]; do
clear clear
@ -638,8 +642,11 @@ set-devices() {
read -p 'BTRFS Root Volume name: ' -e -i "gentoo" root_name read -p 'BTRFS Root Volume name: ' -e -i "gentoo" root_name
HARD_DISK=$device HARD_DISK=$device
partitionDetection
ROOT_NAME=$root_name ROOT_NAME=$root_name
echo $HARD_DISK > /tmp/disk
echo $ROOT_NAME >> /tmp/disk
fi
partitionDetection
} }
if [ "$1" = "desktop" ]; then if [ "$1" = "desktop" ]; then