From a9b9cbfa34e72fe24fdb23f5b8923959b5f45341 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Sun, 3 Aug 2025 15:30:49 +0200 Subject: [PATCH] Must detach after restart --- bin/omarchy-restart-app | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/omarchy-restart-app b/bin/omarchy-restart-app index db37c2d..8cf2a03 100755 --- a/bin/omarchy-restart-app +++ b/bin/omarchy-restart-app @@ -1,4 +1,4 @@ #!/bin/bash pkill -x $1 -uwsm app -- $1 >/dev/null 2>&1 & +setsid uwsm app -- $1 >/dev/null 2>&1 &