35 lines
943 B
Bash
Executable File
35 lines
943 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [[ -f /boot/EFI/Linux/omarchy_linux.efi ]] && [[ -f /boot/EFI/Linux/$(cat /etc/machine-id)_linux.efi ]]; then
|
|
echo "Cleanup extra UKI"
|
|
sudo rm -f /boot/EFI/Linux/$(cat /etc/machine-id)_linux.efi
|
|
fi
|
|
echo "Resetting limine config"
|
|
|
|
sudo mv /boot/limine.conf /boot/limine.conf.bak
|
|
|
|
sudo tee /boot/limine.conf <<EOF >/dev/null
|
|
### Read more at config document: https://github.com/limine-bootloader/limine/blob/trunk/CONFIG.md
|
|
#timeout: 3
|
|
default_entry: 2
|
|
interface_branding: Omarchy Bootloader
|
|
interface_branding_color: 2
|
|
hash_mismatch_panic: no
|
|
|
|
term_background: 1a1b26
|
|
backdrop: 1a1b26
|
|
|
|
# Terminal colors (Tokyo Night palette)
|
|
term_palette: 15161e;f7768e;9ece6a;e0af68;7aa2f7;bb9af7;7dcfff;a9b1d6
|
|
term_palette_bright: 414868;f7768e;9ece6a;e0af68;7aa2f7;bb9af7;7dcfff;c0caf5
|
|
|
|
# Text colors
|
|
term_foreground: c0caf5
|
|
term_foreground_bright: c0caf5
|
|
term_background_bright: 24283b
|
|
|
|
EOF
|
|
|
|
sudo limine-update
|
|
sudo limine-snapper-sync
|