Add same shebang as everything else

This commit is contained in:
David Heinemeier Hansson 2025-08-23 18:26:00 +02:00
parent 022b591986
commit 332c8d5abb
2 changed files with 5 additions and 0 deletions

View File

@ -1,3 +1,5 @@
#!/bin/bash
if ! command -v limine &>/dev/null; then
# Add kernel hooks
if ! grep -Eq '^HOOKS=.*plymouth' /etc/mkinitcpio.conf; then

View File

@ -1,3 +1,5 @@
#!/bin/bash
if command -v limine &>/dev/null && [ ! -f /etc/default/limine ]; then
yay -S --noconfirm --needed limine-mkinitcpio-hook limine-snapper-sync
@ -55,6 +57,7 @@ EOF
if ! sudo snapper list-configs 2>/dev/null | grep -q "root"; then
sudo snapper -c root create-config /
fi
if ! sudo snapper list-configs 2>/dev/null | grep -q "home"; then
sudo snapper -c home create-config /home
fi