This commit is contained in:
Mylloon 2022-02-03 17:51:02 +01:00
parent 49ee6b8c13
commit 06fb524ccc
Signed by: Anri
GPG key ID: A82D63DFF8D1317F
3 changed files with 16 additions and 0 deletions

View file

@ -172,3 +172,8 @@ Mon guide à suivre lors d'une réinstallation d'Ubuntu
```bash ```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 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
```

View file

@ -44,6 +44,9 @@ then
# Install Git LFS # Install Git LFS
bash installGitLFS.sh bash installGitLFS.sh
# Install OBS
bash installOBS.sh
if grep "Ubuntu" /proc/version > /dev/null; if grep "Ubuntu" /proc/version > /dev/null;
then then
# Install Brave # Install Brave

8
installOBS.sh Normal file
View file

@ -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! 🎉"