From dc532dd3a0a559647858fd5da047e1f74ecfaad8 Mon Sep 17 00:00:00 2001 From: thelamer Date: Wed, 18 Jun 2025 11:16:10 -0400 Subject: [PATCH] reverse logic --- root/usr/bin/wrapped-chrome | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/root/usr/bin/wrapped-chrome b/root/usr/bin/wrapped-chrome index e0fcc5a..14603b5 100755 --- a/root/usr/bin/wrapped-chrome +++ b/root/usr/bin/wrapped-chrome @@ -3,7 +3,7 @@ BIN=/usr/bin/google-chrome # Cleanup -if ! pgrep chrome > /dev/null;then +if pgrep chrome > /dev/null;then rm -f $HOME/.config/google-chrome/Singleton* fi