installer

This commit is contained in:
nomadics9 2024-10-12 20:45:56 +03:00
parent 7992dee728
commit 7f811f4da7
2 changed files with 5 additions and 1 deletions

View file

@ -41,7 +41,7 @@
}
];
monitor = [
"eDP-1,2560x1600@60,0x0,1.25"
"eDP-1,1920x1080@60,0x0,1"
"DP-2,1920x1080@60,auto,1"
];

View file

@ -82,6 +82,10 @@ sed -i "s/services.flatpak.enable = .*/services.flatpak.enable = $flatpak_respon
vm_response=$(ask_yes_no "Do you want vm and virtmanager to be enabled")
sed -i "s/common.services.vm.enable = .*/common.services.vm.enable = $vm_response;/" "$config_file"
echo -e "$YELLOW Recommended to not enable vfio unless you know what you are doing $ENDCOLOR"
vfio_response=$(ask_yes_no "Do you want GPU-Passthrough to be enabled")
sed -i "s/common.services.vfio.enable = .*/common.services.vfio.enable = $vfio_response;/" "$config_file"
# Notify the user that the changes are complete
echo -e "$GREEN Configuration has been updated with your preferences $ENDCOLOR"