From bdcd78484b1cf8e9af29a09a7a913cdc4d4f4e0b Mon Sep 17 00:00:00 2001 From: Ryan Hughes Date: Wed, 10 Sep 2025 13:08:42 -0400 Subject: [PATCH] Update omarchy-refresh-plymouth to account for limine changes (#1575) * Required -y to run * Update omarchy-refresh-plymouth to account for limine changes --------- Co-authored-by: David Heinemeier Hansson --- bin/omarchy-refresh-plymouth | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/bin/omarchy-refresh-plymouth b/bin/omarchy-refresh-plymouth index e911d74f..8e2a825f 100755 --- a/bin/omarchy-refresh-plymouth +++ b/bin/omarchy-refresh-plymouth @@ -1,4 +1,10 @@ #!/bin/bash sudo cp ~/.local/share/omarchy/default/plymouth/* /usr/share/plymouth/themes/omarchy/ -sudo plymouth-set-default-theme -R omarchy +sudo plymouth-set-default-theme omarchy + +if command -v limine-mkinitcpio &>/dev/null; then + sudo limine-mkinitcpio +else + sudo mkinitcpio -P +fi \ No newline at end of file