Adding install-graphical-pkg.sh

This commit is contained in:
Scott C. MacCallum 2024-02-04 18:38:27 -05:00
parent f2c7f07001
commit 15125669d1
1 changed files with 71 additions and 0 deletions

71
install-graphical-pkg.sh Executable file
View File

@ -0,0 +1,71 @@
#!/bin/bash
# install-graphical-pkg.sh
# This program installs Fedora graphical packages
# Simply comment out the packages that you don't want to install
# Copyright (C) 2024 Scott C. MacCallum
# scott@scm-guru.live
# S C M Guru LLC
# If you find this program useful, please become a patron
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
echo
echo "Installing Fedora graphical packages."
echo "If you find this program useful, please become a patron"
echo
echo "Installing the Audacity package."
dnf -y install audacity
echo
echo "Installing the Blender package."
dnf -y install blender
echo
echo "Installing the Chromium package."
dnf -y install chromium
echo
echo "Installing the DosBox package."
dnf -y install dosbox
echo
echo "Installing the FileZilla package."
dnf -y install filezilla
echo
echo "Installing the Gimp package."
dnf -y install gimp
echo
echo "Installing the Mixxx package."
dnf -y install https://mirrors.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm
dnf -y install mixxx
echo
echo "Installing the OBS package."
dnf -y install obs-studio
echo
echo "Installing the RSS Guard package."
dnf -y install rssguard
echo
echo "Installing the Thunderbird package."
dnf -y install thunderbird
echo
echo "Installing the Virt Manager package."
dnf -y install virt-manager
echo
echo "Installing the VLC package."
dnf -y install vlc
echo
echo "Installng the Wireshark package."
dnf -y install wireshark
echo
echo "Installing the Arduino IDE2 package"
flatpak -y install cc.arduino.IDE2
exit 0