Skip to content

Commit

Permalink
Merge branch 'main' of https://github.com/SolDoesTech/HyprV4
Browse files Browse the repository at this point in the history
  • Loading branch information
SolDoesTech committed Jan 15, 2024
2 parents 580ebc4 + fc3974d commit c81cf65
Showing 1 changed file with 25 additions and 8 deletions.
33 changes: 25 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,30 @@ Do this ONLY if you need Nvidia support (do this first)
```
yay -S linux-headers nvidia-dkms qt5-wayland qt5ct libva libva-nvidia-driver-git
Add modules: nvidia nvidia_modeset nvidia_uvm nvidia_drm to /etc/mkinitcpio.conf
Generate new image: sudo mkinitcpio --config /etc/mkinitcpio.conf --generate /boot/initramfs-custom.img
Add/create the following: options nvidia-drm modeset=1 in /etc/modprobe.d/nvidia.conf
reboot!
```
/etc/mkinitcpio.conf
```
MODULES=(nvidia nvidia_modeset nvidia_uvm nvidia_drm)
```
generate a new initramfs image
```
sudo mkinitcpio --config /etc/mkinitcpio.conf --generate /boot/initramfs-custom.img
```
Create NVIDIA Configuration
```
echo "options nvidia-drm modeset=1" | sudo tee /etc/modprobe.d/nvidia.conf
```
verify
```
cat /etc/modprobe.d/nvidia.conf
```
shoud return:
```
options nvidia-drm modeset=1
```
now reboot
```
reboot
```

Now install the below for Hyprland
Expand All @@ -30,4 +47,4 @@ file-roller btop pacman-contrib starship ttf-jetbrains-mono-nerd \
noto-fonts-emoji lxappearance xfce4-settings sddm-git sddm-sugar-candy-git
```

Or you can use the attached script "set-hypr" to install everything for you.
Or you can use the attached script "set-hypr" to install everything for you.

0 comments on commit c81cf65

Please sign in to comment.