From 2c93e66b0cd0b8138e16dc580fa26878f31f4e50 Mon Sep 17 00:00:00 2001 From: Kevin McConnell Date: Tue, 25 Aug 2026 16:05:39 +0100 Subject: [PATCH] Run ONCE with sudo when installing The install user is no longer in the docker group by default, so a bare `once` cannot reach the Docker socket. Run with `sudo` instead. The script already requires sudo to install the command and enable the service, so we can safely use it for the initial command launch as well. --- bin/omarchy-install-service-once | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/omarchy-install-service-once b/bin/omarchy-install-service-once index 9b5cf446..b721a738 100755 --- a/bin/omarchy-install-service-once +++ b/bin/omarchy-install-service-once @@ -10,4 +10,4 @@ echo "Enabling ONCE background service..." sudo systemctl enable --now once-background.service echo -e "\nLaunching ONCE..." -once +sudo once