From 68adbd3f5e1b70138ea81355f2e94ad516b03b4b Mon Sep 17 00:00:00 2001 From: ITmail-dk Date: Fri, 14 Oct 2022 09:49:43 +0200 Subject: [PATCH] ADD Fedora test install --- install-ma-dte-fedora-test.sh | 35 ++++++++++++++++++ .../dnf-install-software-last-packages.sh | 36 +++++++++++++++++++ 2 files changed, 71 insertions(+) create mode 100644 install-ma-dte-fedora-test.sh create mode 100644 install-scripts/dnf-install-software-last-packages.sh diff --git a/install-ma-dte-fedora-test.sh b/install-ma-dte-fedora-test.sh new file mode 100644 index 0000000..44a006c --- /dev/null +++ b/install-ma-dte-fedora-test.sh @@ -0,0 +1,35 @@ +#!/bin/bash +cd ~/bspwm-install-ma-dte + +# Do, mkdir, copy, copy, echo files. +. ~/bspwm-install-ma-dte/install-scripts/mkdir-cp-git-chmod-echo-files.sh + +# Not for production version +#read -p "Troubleshooting - Press a key to continue the installation." + +# Add Software & Packages. +. ~/bspwm-install-ma-dte/install-scripts/dnf-install-core-packages.sh + +# Not for production version +#read -p "Troubleshooting - Press a key to continue the installation." + +# Add Pulseaudio to system startup as user. +systemctl --user enable pulseaudio + +# Not for production version +#read -p "Troubleshooting - Press a key to continue the installation." + +# Last Software & Packages. +. ~/bspwm-install-ma-dte/install-scripts/dnf-install-software-last-packages.sh + +# Not for production version +#read -p "Troubleshooting - Press a key to continue the installation." + +sudo sh -c "echo 'Xcursor.theme: Nordzy-cursors' >> /etc/X11/Xresources/x11-common" +sudo sh -c "echo 'Xcursor.size: 22' >> /etc/X11/Xresources/x11-common" + +# Not for production version +#read -p "Troubleshooting - Press a key to continue the installation." + +# Last step setup menu installing. +#. ~/bspwm-install-ma-dte/last-step-setup-menu.sh \ No newline at end of file diff --git a/install-scripts/dnf-install-software-last-packages.sh b/install-scripts/dnf-install-software-last-packages.sh new file mode 100644 index 0000000..d11110d --- /dev/null +++ b/install-scripts/dnf-install-software-last-packages.sh @@ -0,0 +1,36 @@ +#!/bin/bash + +# Install - Software & Packages. +echo "-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-" +echo " " +echo " Download, Building & Install Software" +echo " " +echo " Enter your user password, to continue if necessary" +echo " " +echo " continues the installation in 3 seconds" +echo " " +echo "-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-" +sleep 3 + +# Software & Packages +sudo dnf install -y wireguard-tools librecad freerdp thunar thunar-archive-plugin filezilla gigolo + +# Maybe maybe Software & Packages ON / OFF +#sudo apt install -y + +# Not for production version +#read -p "Troubleshooting - Press a key to continue the installation." + +# Alacritty - Building and installing ON / OFF +clear +#echo "-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-" +#echo " " +#echo " Alacritty - Building and installing" +#echo " " +#echo "-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-" + +# Alacritty - Building and installing ON / OFF +#. ~/bspwm-install-ma-dte/install-scripts/install-alacritty-debian.sh + +# Not for production version +#read -p "Troubleshooting - Press a key to continue the installation." \ No newline at end of file