mirror of
https://github.com/arthur-pbty/arthur-os.git
synced 2026-08-01 20:28:16 +02:00
13 lines
357 B
Bash
13 lines
357 B
Bash
echo "Remove alternative limine.conf files"
|
|
|
|
if omarchy-cmd-present limine; then
|
|
if [[ ! -f /boot/limine.conf ]]; then
|
|
echo "Error: /boot/limine.conf does not exist. Do not reboot without resolving this issue!"
|
|
exit 1
|
|
fi
|
|
|
|
sudo rm -f /boot/EFI/limine/limine.conf
|
|
sudo rm -f /boot/EFI/BOOT/limine.conf
|
|
sudo rm -f /boot/limine/limine.conf
|
|
fi
|