From 76c7956d15459951058f6a28c29004e20af151c7 Mon Sep 17 00:00:00 2001 From: RaphaelKimmig Date: Mon, 11 Aug 2025 17:10:52 +0200 Subject: [PATCH] fix: lock 1password right away, not after unlock (#644) --- bin/omarchy-lock-screen | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/omarchy-lock-screen b/bin/omarchy-lock-screen index c8bb4bc6..d3f6276d 100755 --- a/bin/omarchy-lock-screen +++ b/bin/omarchy-lock-screen @@ -1,11 +1,11 @@ #!/bin/bash # Lock the screen -pidof hyprlock || hyprlock +pidof hyprlock || hyprlock & # Ensure 1password is locked if pgrep -x "1password" >/dev/null; then - 1password --lock + 1password --lock & fi # Avoid running screensaver when locked