From 15125669d194ee4c647965e271cfb19cc8b7463b Mon Sep 17 00:00:00 2001 From: "Scott C. MacCallum" Date: Sun, 4 Feb 2024 18:38:27 -0500 Subject: [PATCH] Adding install-graphical-pkg.sh --- install-graphical-pkg.sh | 71 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 71 insertions(+) create mode 100755 install-graphical-pkg.sh diff --git a/install-graphical-pkg.sh b/install-graphical-pkg.sh new file mode 100755 index 0000000..a6c4a04 --- /dev/null +++ b/install-graphical-pkg.sh @@ -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 . + +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