diff --git a/README.md b/README.md
index c62ae4d..0445298 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,11 @@
+
## 💌 JaKooLit's Ubuntu Hyprland Install Script 💌
#### For Ubuntu 24.04 Noble Numbat
@@ -13,7 +20,7 @@
- This is the reason why I have to set a specific release version on Hyprland packages including its eco-system as it is most likely wayland protocol wont be updated since its an LTS version.
-#### 👇 KOOL's Hyprland-Dots related Links 👇
+👇 KOOL's Hyprland-Dots related Links 👇
@@ -117,7 +124,7 @@ https://github.com/JaKooLit/Hyprland-Dots/assets/85185940/50d53755-0f11-45d6-991
- The dotfiles that will be pulled by this installer is only specific. Since newer dotfiles might not work properly
> [!NOTE]
-> There is a lot of changes on Hyprland v0.40.0. And because of this, the latest Hyprland-Dots compatible for this script will be Hyprland-Dots v2.2.12 [`LINK`](https://github.com/JaKooLit/Hyprland-Dots/releases/tag/v2.2.12)
+> There is a lot of changes on Hyprland v0.40.0. And because of this, the latest Hyprland-Dots compatible for this script will be Hyprland-Dots v2.2.14 [`LINK`](https://github.com/JaKooLit/Hyprland-Dots/releases/tag/v2.2.14)
#### ✨ Some notes on this installer / Prerequisites
- This script is meant to install in Ubuntu 24.04 LTS
diff --git a/install-scripts/hyprland.sh b/install-scripts/hyprland.sh
index 768b657..fb210c8 100755
--- a/install-scripts/hyprland.sh
+++ b/install-scripts/hyprland.sh
@@ -43,5 +43,9 @@ else
echo -e "${ERROR} Download failed for Hyprland." 2>&1 | tee -a "$LOG"
fi
+wayland_sessions_dir=/usr/share/wayland-sessions
+[ ! -d "$wayland_sessions_dir" ] && { printf "$CAT - $wayland_sessions_dir not found, creating...\n"; sudo mkdir -p "$wayland_sessions_dir" 2>&1 | tee -a "$LOG"; }
+sudo cp assets/hyprland.desktop "$wayland_sessions_dir/" 2>&1 | tee -a "$LOG"
+
clear
diff --git a/install-scripts/nvidia.sh b/install-scripts/nvidia.sh
index 2e7a6a1..44c93b7 100755
--- a/install-scripts/nvidia.sh
+++ b/install-scripts/nvidia.sh
@@ -78,7 +78,7 @@ printf "${YELLOW} nvidia-stuff to /etc/default/grub..."
# Define the configuration file and the line to add
config_file="/etc/modprobe.d/nvidia.conf"
line_to_add="""
- options nvidia-drm modeset=1
+ options nvidia-drm modeset=1 fbdev=1
options nvidia NVreg_PreserveVideoMemoryAllocations=1
"""