I started using Omarchy after listening to this interview. I am really impressed since i became more productive after the initial Hotkeys learning curve.
I think I might even be able to contribute to this project. I will keep this page here as a reference with the modifications i will be doing to the default installation
- Changing the default screen lock time
- Preventing CTRL + W to close apps by mistake
- Replace chromium with firefox
- Find out which Laptop you have: sudo dmdecode -s system-product-name
- Top command doesnt return output on ssh sessions
Create a USB for both win and linux
lsblk
sudo fdisk /dev/sdX
o -> n -> p -> default -> default -> w ( write)
sudo pacman -S dosfstools
sudo mkfs.fat -F 32 /dev/sdX1
sudo mount /dev/sdX1 /mnt/usbdata
Fix unbootable machine:
Boot from Arch live USB:
- Check partitions:
lsblk
- Mount your system:
mount /dev/nvme0n1pX /mnt # Your root partition mount /dev/nvme0n1p1 /mnt/boot # EFI partition
- Chroot:
arch-chroot /mnt
- Reinstall kernel and Limine:
pacman -Syy pacman -S linux linux-headers limine limine-deploy /dev/nvme0n1 # Deploy to disk (not partition)
- Verify/fix Limine config at
/boot/limine.cfg:nano /boot/limine.cfgMake sure the kernel path is correct, should look like:PROTOCOL=linux KERNEL_PATH=boot():/vmlinuz-linux
- Exit and reboot:
exit umount -R /mnt reboot
Leave a Reply