From b7a3b4b020f124b6812d80657db791af968965e6 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Wed, 9 Jul 2025 18:39:12 -0700 Subject: [PATCH] Add a way to refresh plymouth setup --- bin/omarchy-refresh-plymouth | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100755 bin/omarchy-refresh-plymouth diff --git a/bin/omarchy-refresh-plymouth b/bin/omarchy-refresh-plymouth new file mode 100755 index 0000000..e325974 --- /dev/null +++ b/bin/omarchy-refresh-plymouth @@ -0,0 +1,6 @@ +#!/bin/bash + +if gum confirm "Refresh Plymouth theme? This will replace your current startup screen with Omarchy defaults."; then + sudo cp ~/.local/share/omarchy/default/plymouth/* /usr/share/plymouth/themes/omarchy/ + sudo plymouth-set-default-theme -R omarchy +fi