From 903db242530278fa4d13f46d44d3c014ef6f58e3 Mon Sep 17 00:00:00 2001 From: Narsty Date: Sat, 3 Jun 2023 16:45:02 -0500 Subject: [PATCH] Update Password Generator.txt Now has Popup with password --- Goodusb/Password Generator.txt | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/Goodusb/Password Generator.txt b/Goodusb/Password Generator.txt index 5f73468..83db329 100644 --- a/Goodusb/Password Generator.txt +++ b/Goodusb/Password Generator.txt @@ -14,22 +14,13 @@ STRING terminal DELAY 500 ENTER DELAY 500 -STRING echo "USB Script Utility" -ENTER -DELAY 500 -STRING echo "-------------------" -ENTER -DELAY 500 STRING echo "Generating Password..." ENTER DELAY 500 STRING password=$(openssl rand -base64 12) ENTER DELAY 500 -STRING echo "Generated Password: $password" -ENTER -DELAY 500 -STRING echo "-------------------" +STRING osascript -e 'tell app "System Events" to display dialog "Generated Password:\n\n'"$password"'" with title "Generated Password" buttons {"OK"} default button 1 with icon note' ENTER @@ -38,3 +29,5 @@ ENTER + +