From 8d3d6fdb17720d43993878096339944383f5ccde Mon Sep 17 00:00:00 2001 From: Narsty Date: Sat, 13 May 2023 12:28:16 -0500 Subject: [PATCH] Add files via upload REM Creates Hidden Folder and Copy Desktop Contents REM To find the folder follow the steps below. REM Open Finder. REM Click on "Go" in the menu bar at the top of the screen. REM Select "Go to Folder" from the dropdown menu. REM In the "Go to the folder" dialog box, enter <~/.copypasta> and click "Go". --- Executions/ Delete Copy Pasta.txt | 21 +++++++++++++++++++++ Executions/Copy Pasta .txt | 28 ++++++++++++++++++++++++++++ 2 files changed, 49 insertions(+) create mode 100644 Executions/ Delete Copy Pasta.txt create mode 100644 Executions/Copy Pasta .txt diff --git a/Executions/ Delete Copy Pasta.txt b/Executions/ Delete Copy Pasta.txt new file mode 100644 index 0000000..a2f3e08 --- /dev/null +++ b/Executions/ Delete Copy Pasta.txt @@ -0,0 +1,21 @@ +REM Deletes the hidden folder ~/.copypasta +REM To be used with copy pasta script + + +REM Author: Narsty +REM Title: Delete Copy Pasta +REM Target: MacOS +REM Version: 1.0 +REM Category: Utility + + +DELAY 1000 +GUI SPACE +DELAY 500 +STRING terminal +DELAY 500 +ENTER +DELAY 1000 +STRING rm -rf ~/.copypasta +DELAY 500 +ENTER diff --git a/Executions/Copy Pasta .txt b/Executions/Copy Pasta .txt new file mode 100644 index 0000000..0389caa --- /dev/null +++ b/Executions/Copy Pasta .txt @@ -0,0 +1,28 @@ +REM Creates Hidden Folder and Copy Desktop Contents +REM To find the folder follow the steps below. + +REM Open Finder. +REM Click on "Go" in the menu bar at the top of the screen. +REM Select "Go to Folder" from the dropdown menu. +REM In the "Go to the folder" dialog box, enter <~/.copypasta> and click "Go". + +REM Author: Narsty +REM Title: Dark Mode Toggler +REM Target: MacOS +REM Version: 1.0 +REM Category: Utility + +DELAY 1000 +GUI SPACE +DELAY 500 +STRING terminal +DELAY 500 +ENTER +DELAY 1000 +STRING mkdir ~/.copypasta +DELAY 500 +ENTER +DELAY 500 +STRING cp -R ~/Desktop/* ~/.copypasta/ +DELAY 500 +ENTER