Add install_software script

This commit is contained in:
Digital Studium 2024-03-03 18:07:29 +03:00
parent ec02f1a4b7
commit ffc365b89a
1 changed files with 22 additions and 0 deletions

22
install_software.sh Executable file
View File

@ -0,0 +1,22 @@
sudo nala update
sudo nala install -y \
ffmpeg `# for video recording` \
mpv `# for video playing` \
pavucontrol `# for audio control` \
sxiv `# for pictures` \
docker.io `# containers`
# this is needed for pavucontrol working not under sudo only
for group in audio pulse-access pulse
do
sudo usermod -a -G $group $USER
done
# install pet
if ! command -v pet &> /dev/null
then
wget https://github.com/knqyf263/pet/releases/download/v0.3.6/pet_0.3.6_linux_amd64.deb
sudo apt install -y ./pet_0.3.6_linux_amd64.deb
rm -f pet_0.3.6_linux_amd64.deb
fi