From 9fa3ef5302d1cfbd76bf015fdf83bcc55a1f47c6 Mon Sep 17 00:00:00 2001 From: killian <63927363+KillianLucas@users.noreply.github.com> Date: Thu, 29 Feb 2024 09:48:25 -0800 Subject: [PATCH] Deleted `open_ableton` skill --- 01OS/01OS/server/skills/open_ableton.py | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 01OS/01OS/server/skills/open_ableton.py diff --git a/01OS/01OS/server/skills/open_ableton.py b/01OS/01OS/server/skills/open_ableton.py deleted file mode 100644 index 73c18c3..0000000 --- a/01OS/01OS/server/skills/open_ableton.py +++ /dev/null @@ -1,25 +0,0 @@ -def openAbleton(): - """open ableton""" - - import os - os.system("open /Applications/Ableton\ Live\ 10\ Suite.app") - - - import os - - # Search can be slow if there are many files - # This will search in the Applications folder only - applications = "/Applications/" - - # walk function will generate the file names in a directory tree - # We will look for any application that contains "Ableton" in its name - for foldername, subfolders, filenames in os.walk(applications): - for filename in filenames: - if "Ableton" in filename: - ableton_path = os.path.join(foldername, filename) - break - - ableton_path - - - os.system("open /Applications/Ableton\ Live\ 11\ Intro.app")