custom-hypr - chore: change way to approach

This commit is contained in:
huyjaky
2024-08-14 18:15:19 +07:00
parent 1244cbc414
commit 3bc478b924
2 changed files with 16 additions and 5 deletions

View File

@@ -4,14 +4,25 @@ install conda nvm nvim
use for reconfig grub for fix stuck at initial ramdisks:
```
```bash
mount /dev/sda2 /mnt
mount /dev/sda1 /mnt/boot
arch-chroot /mnt/
```
-> remove file /boot/grub/grub.cfg
-idk how its work but do same thing below
-> change file name from grub.cfg to grub.cfg.off
```bash
mv grub.cfg grub.cfg.off
```
grub-mkconfig -o /boot/grub/grub.cfg
-> reboot and reboot command grub command line:
```bash
grub>reboot
```
-> rename grub.cfg.off to grub.cfg
```bash
mv grub.cfg.off grub.cfg
```