From 785f46495b99538fb8e25272b61263ca25572c50 Mon Sep 17 00:00:00 2001 From: Morgan Terry Date: Fri, 9 Dec 2022 20:53:34 -0700 Subject: [PATCH] feat: delete old lock script --- LockPause.AppleScript | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 LockPause.AppleScript diff --git a/LockPause.AppleScript b/LockPause.AppleScript deleted file mode 100644 index af80ff4..0000000 --- a/LockPause.AppleScript +++ /dev/null @@ -1,27 +0,0 @@ -(* TODO: Figure out how to check for installed app before trying to see if it's running *) - -on run - tell application "System Events" - start current screen saver - end tell - - if application "Spotify" is running then - tell application "Spotify" - pause - end tell - end if - - if application "Amazon Music" is running then - tell application "Amazon Music" - pause - end tell - end if - - if application "iTunes" is running then - tell application "iTunes" - pause - end tell - end if - -end run -