Hide needless noisy on startup and shutdown

This commit is contained in:
David Heinemeier Hansson
2026-04-29 10:41:00 +02:00
parent 6e04ff776b
commit 114633f0e8
2 changed files with 10 additions and 1 deletions
+1 -1
View File
@@ -3,7 +3,7 @@ TARGET_OS_NAME="Omarchy"
ESP_PATH="/boot" ESP_PATH="/boot"
KERNEL_CMDLINE[default]+="@@CMDLINE@@" KERNEL_CMDLINE[default]+="@@CMDLINE@@"
KERNEL_CMDLINE[default]+=" quiet splash" KERNEL_CMDLINE[default]+=" quiet splash loglevel=0 systemd.show_status=false rd.udev.log_level=0 vt.global_cursor_default=0"
ENABLE_UKI=yes ENABLE_UKI=yes
CUSTOM_UKI_NAME="omarchy" CUSTOM_UKI_NAME="omarchy"
+9
View File
@@ -0,0 +1,9 @@
echo "Hide shutdown console messages behind Plymouth"
if [[ -f /etc/default/limine ]]; then
sudo sed -i 's/ quiet splash/ quiet splash loglevel=0 systemd.show_status=false rd.udev.log_level=0 vt.global_cursor_default=0/' /etc/default/limine
if omarchy-cmd-present limine-mkinitcpio; then
sudo limine-mkinitcpio
fi
fi