mirror of
https://github.com/arthur-pbty/arthur-os.git
synced 2026-08-01 20:28:16 +02:00
10 lines
329 B
Bash
10 lines
329 B
Bash
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
|