Dual boot with a simple alias
I like to dual boot whenever I want to play some games. This way, I don’t need to install all the proprietary crap on Arch and it feels less of a pain to do so. To make it even easier, I like to use a simple bash alias, which boots into my Windows 11 installation the next time, once I restart my computer.
alias win='sudo efibootmgr --bootnext 0009; reboot'
With the help of efibootmgr
we are able to list all boot entries, but also set
the boot entry which is scheduled to be run on next boot.
Read other posts