Add OBS
This commit is contained in:
parent
49ee6b8c13
commit
06fb524ccc
3 changed files with 16 additions and 0 deletions
|
@ -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
|
||||
```
|
||||
|
|
|
@ -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
|
||||
|
|
8
installOBS.sh
Normal file
8
installOBS.sh
Normal 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! 🎉"
|
Reference in a new issue