├── README.md ├── ableton.desktop ├── build.sh ├── icon.png └── startup.sh /README.md: -------------------------------------------------------------------------------- 1 | # Ableton On Linux 2 | 3 | ## This is the repository on the bash script to install Ableton Live 11 Suite on linux through Wine 4 | 5 | This is the first program that can be installed via WOL(Windows-On-Linux) 6 | 7 | Other versions of Ableton: 8 | 9 | - Ableton 11 Intro: https://github.com/Windows-On-Linux/AbletonIntro 10 | - Ableton 11 Lite: https://github.com/Windows-On-Linux/AbletonLite 11 | - Ableton 11 Standard: https://github.com/Windows-On-Linux/AbletonStandard 12 | - Ableton 11 Live: https://github.com/Windows-On-Linux/Ableton-On-Linux 13 | 14 | Tested VST: Toontrack Suite(superior drummer, ezdrummer, ezkeys and ezbass), Fabfilter(Add mfc42 via winetricks), Ample Sound Suite, Waves(14, don't try to install drivers since it stop the installation, you need wine-staging to run central properly and install powershell: https://github.com/PietJankbal/powershell-wrapper-for-wine) 15 | -------------------------------------------------------------------------------- /ableton.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Type=Application 3 | Terminal=true 4 | Name=Ableton Live 11 Suite 5 | Icon=~/wol/Ableton_Live_11_Suite/icon.png 6 | Exec=~/wol/Ableton_Live_11_Suite/startup.sh -------------------------------------------------------------------------------- /build.sh: -------------------------------------------------------------------------------- 1 | dirname=Ableton_Live_11_Suite 2 | desktop=$(xdg-user-dir DESKTOP) 3 | echo "Preparing the folder..." 4 | mkdir ~/wol/Ableton_Live_11_Suite 5 | echo "Installing all dependencies for Ableton Live 11 Suite and preparing all enviroments, Please wait..." 6 | WINEARCH=win64 WINEPREFIX=~/wol/Ableton_Live_11_Suite winetricks d3dx9 dotnet35 dotnet452 dxvk gdiplusvcrun2019 corefonts tahoma vcrun6sp6 7 | WINEARCH=win64 WINEPREFIX=~/wol/Ableton_Live_11_Suite winetricks win10 8 | echo "Creating shortcut on your desktop, please don't open it until the installer finish its work" 9 | cp ~/wol/Downloads/"Ableton Live Suite 11"/startup.sh ~/wol/Ableton_Live_11_Suite 10 | cp ~/wol/Downloads/"Ableton Live Suite 11"/icon.png ~/wol/Ableton_Live_11_Suite 11 | cp ~/wol/Downloads/"Ableton Live Suite 11"/ableton.desktop $desktop 12 | cd ~/wol/Ableton_Live_11_Suite/drive_c 13 | echo "Downloading Ableton Live 11 Suite, this depends on your internet connection speed, Please wait..." 14 | wget https://cdn-downloads.ableton.com/channels/11.1.5/ableton_live_suite_11.1.5_64.zip -O ~/wol/Ableton_Live_11_Suite/drive_c/ableton.zip 15 | mkdir ~/wol/Ableton_Live_11_Suite/drive_c/ableton11_installer 16 | echo "Unzipping Ableton Live 11 Suite..." 17 | unzip ~/wol/Ableton_Live_11_Suite/drive_c/ableton.zip -d ~/wol/Ableton_Live_11_Suite/drive_c/ableton11_installer 18 | echo "The installer is ready to run" 19 | WINEARCH=win64 WINEPREFIX=~/wol/Ableton_Live_11_Suite wine ~/wol/Ableton_Live_11_Suite/drive_c/ableton11_installer/"Ableton Live 11 Suite Installer.exe" 20 | echo "Ableton Live 11 Suite" >> ~/wol/Ableton_Live_11_Suite/name.txt 21 | echo "The installer is finished" 22 | read -rsn1 -p"The installation is finished, Press any key to exit";echo 23 | exit -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windows-On-Linux/Ableton-On-Linux/ae9d1273a264141e987e382c07526ad51a74d06a/icon.png -------------------------------------------------------------------------------- /startup.sh: -------------------------------------------------------------------------------- 1 | # To complete 2 | 3 | WINEARCH=win64 WINEPREFIX=~/wol/Ableton_Live_11_Suite ~/wol/Ableton_Live_11_Suite/drive_c/ProgramData/Ableton/"Live 11 Suite"/Program/"Ableton Live 11 Suite.exe" 4 | 5 | --------------------------------------------------------------------------------