Last active
May 2, 2020 03:35
-
-
Save fredcamps/1b2b549d93e7c83363432499f9d30230 to your computer and use it in GitHub Desktop.
# Office/Multimedia Production environment
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# gave permissions to user | |
sudo usermod -a -G audio "${USER}" | |
# add audio repositories | |
wget https://launchpad.net/~kxstudio-debian/+archive/kxstudio/+files/kxstudio-repos_10.0.3_all.deb | |
# low latency kernel | |
sudo apt-get install -y linux-lowlatency | |
# jack audio server | |
sudo apt-get install -y qjackctl pulseaudio-module-jack | |
# daw | |
sudo apt-get install -y lmms lmms-common | |
# drum machine | |
sudo apt-get install -y hydrogen-drumkits | |
# guitar vst | |
wget https://www.tonelib.net/download/ToneLib-GFX-amd64.deb && sudo dpkg -i ToneLib-GFX-amd64.de | |
# tabs | |
wget https://www.tonelib.net/download/ToneLib-Jam-amd64.deb && sudo dpkg -i ToneLib-Jam-amd64.deb |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
sudo apt-get install -y gimp darktable librecad inkscape drawing |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
sudo apt-get install -y xchm epub-utils |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment