diff --git a/README.md b/README.md index ce4d6eb..95aef02 100644 --- a/README.md +++ b/README.md @@ -172,3 +172,8 @@ Mon guide à suivre lors d'une réinstallation d'Ubuntu ```bash wget -q --show-progress https://git.kennel.ml/Anri/myLinuxConfiguration/raw/branch/main/installGitLFS.sh -O tmp.sh && bash tmp.sh; rm tmp.sh ``` + +- Installe OBS + ```bash + wget -q --show-progress https://git.kennel.ml/Anri/myLinuxConfiguration/raw/branch/main/installOBS.sh -O tmp.sh && bash tmp.sh; rm tmp.sh + ``` diff --git a/installGlobalScript.sh b/installGlobalScript.sh index 2c8f453..23b514c 100644 --- a/installGlobalScript.sh +++ b/installGlobalScript.sh @@ -44,6 +44,9 @@ then # Install Git LFS bash installGitLFS.sh + # Install OBS + bash installOBS.sh + if grep "Ubuntu" /proc/version > /dev/null; then # Install Brave diff --git a/installOBS.sh b/installOBS.sh new file mode 100644 index 0000000..a5ac27f --- /dev/null +++ b/installOBS.sh @@ -0,0 +1,8 @@ +# Add repo +sudo add-apt-repository ppa:obsproject/obs-studio -y + +# Installation +sudo apt update +sudo apt install ffmpeg obs-studio -y + +echo -e "\nOBS installed! 🎉"