mirror of
https://github.com/LukeHagar/omarchy.git
synced 2025-12-06 04:20:23 +00:00
* No using custom chromium.desktop any more * Spacing * Rely on $OMARCHY_PATH * Add common pkg and cmd functions for use in migrations and elsewhere * Simple pkg-adds * Later migration does it * Ensure running migrations on older installs have the new pkg/cmds available * Spacing * Use new abstractions * Installed in later migration * Needless comment * Use new commands * Fix package name from 'batt' to 'bat'
19 lines
571 B
Bash
19 lines
571 B
Bash
echo "Prevent docker from requiring network readiness on boot"
|
|
|
|
if [[ ! -f /etc/systemd/system/docker.service.d/no-block-boot.conf ]]; then
|
|
sudo mkdir -p /etc/systemd/system/docker.service.d/
|
|
sudo tee /etc/systemd/system/docker.service.d/no-block-boot.conf <<'EOF'
|
|
[Unit]
|
|
DefaultDependencies=no
|
|
EOF
|
|
|
|
sudo mkdir -p /etc/systemd/system/plymouth-quit.service.d/
|
|
sudo tee /etc/systemd/system/plymouth-quit.service.d/wait-for-graphical.conf <<'EOF'
|
|
[Unit]
|
|
After=multi-user.target
|
|
EOF
|
|
|
|
sudo systemctl daemon-reload
|
|
sudo systemctl mask plymouth-quit-wait.service
|
|
fi
|