From 8e9b72cafca4c3df0b8e3d8e068e1d92aa4f6f9e Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Mon, 4 Dec 2023 12:26:06 +0900 Subject: [PATCH] added readme for sddm --- README.md | 5 +++-- install-scripts/nvidia.sh | 1 + 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index b767370..de06fd7 100644 --- a/README.md +++ b/README.md @@ -26,9 +26,10 @@ sudo nano /etc/apt/sources.list ### 🔔 NOTICE TO UBUNTU USERS ### - You can use this installer. However, I have only tested on Ubuntu 23.10. Not sure if it works on older ubuntu as Hyprland needs an updated wayland libraries. For sure wont work in any Ubuntu LTS. - If you are using Gnome already, DO NOT install the SDDM. The GDM works file as well. For some reason, during installation, you will be asked which login manager you wanted to use. But during my test, nothing happened. -- For Ubuntu with NVIDIA GPU's, make sure to edit the install-scripts/nvidia.sh . Delete all packages in nvidia_pkg except libva-wayland2 and nvidia-vaapi-driver and uncomment/remove # before sudo ubuntu-drivers install. You also need to delete or simply just add # in the lines 43 and 44 echo "## for nvidia... and echo "deb ........... - +- For Ubuntu with NVIDIA GPU's, make sure to edit the install-scripts/nvidia.sh . Delete all packages in nvidia_pkg except libva-wayland2 and nvidia-vaapi-driver and uncomment/remove # before sudo ubuntu-drivers install. You also need to delete or simply just add # in the lines 44 and 45 echo "echo "## for nvidia" | sudo tee -a... and echo "deb http://deb.debian.org/debian........ +### ⚠️ WARNING! If you have GDM already as log-in manager, DO NOT install SDDM +- You will encounter issues. See [`Issue 2 - SDDM`](https://github.com/JaKooLit/Debian-Hyprland/issues/2) #### 📷 Hyprland-Dots-v2 Featuring Rofi diff --git a/install-scripts/nvidia.sh b/install-scripts/nvidia.sh index 54a895e..e2f9b9f 100644 --- a/install-scripts/nvidia.sh +++ b/install-scripts/nvidia.sh @@ -39,6 +39,7 @@ set -e # Create a backup of the sources.list file sudo cp /etc/apt/sources.list /etc/apt/sources.list.backup 2>&1 | tee -a "$LOG" +## UBUNTU - NVIDIA (comment this two by adding # you dont need this!) # Add the comment and repository entry to sources.list echo "## for nvidia" | sudo tee -a /etc/apt/sources.list 2>&1 | tee -a "$LOG" echo "deb http://deb.debian.org/debian/ trixie main contrib non-free non-free-firmware" | sudo tee -a /etc/apt/sources.list 2>&1 | tee -a "$LOG"