Compare commits

...

3 Commits

6 changed files with 16 additions and 4 deletions

View File

@ -27,6 +27,9 @@ Contains specialized, system-dependent scripts that are **NOT** run by default.
- Manually invoked only after thorough inspection
- Understood to be highly specific to particular system configurations
### `manual/`
Scripts to install software that are heavily depedendent on what you want / what you have. Eg.: Controlling AIO CPU Coolers
### `packages/`
Scripts dedicated to installing and deploying specific software packages. Each script typically handles the installation, configuration, and initial setup of a particular application or software suite.

View File

@ -128,7 +128,7 @@ SETUP_CORE_TTY=$ANSWER_SETUP_CORE_TTY
SETUP_CORE_GUI=$ANSWER_SETUP_CORE_GUI
## Work Systems - Do we work on this device?
### docker, docker-compose, LibreOffice, nmap, qemu-kvm, virt-manager, drawio
### docker, docker-compose, LibreOffice, nmap, qemu-kvm, remmina, virt-manager, drawio
SETUP_WORKSTATION=$ANSWER_SETUP_WORKSTATION
## Personal Use - Do we use this device for personal things?

View File

@ -0,0 +1,7 @@
#!/bin/bash
echo "Installing coolercontrol"
sudo dnf install dnf-plugins-core
sudo dnf copr enable codifryed/CoolerControl
sudo dnf install coolercontrol
sudo systemctl enable --now coolercontrold

View File

@ -0,0 +1,2 @@
#!/bin/bash
sudo flatpak install flathub org.upscayl.Upscayl

View File

@ -4,8 +4,8 @@ if [ "$SETUP_WORKSTATION" != "true" ]; then
return 0
fi
echo "${INSTALLING_PRE_TEXT} qemu-kvm virt-manager bridge-utils libvirt"
eval "sudo dnf install qemu-kvm virt-manager libvirt bridge-utils -y $OUTPUT_CONTROL"
echo "${INSTALLING_PRE_TEXT} qemu-kvm virt-manager bridge-utils libvirt virt-viewer"
eval "sudo dnf install qemu-kvm virt-manager libvirt bridge-utils virt-viewer -y $OUTPUT_CONTROL"
if [ -z "$MAIN_USER" ]; then

View File

@ -19,7 +19,7 @@ SETUP_CORE_TTY=true
SETUP_CORE_GUI=true
## Work Systems - Do we work on this device?
### docker, docker-compose, LibreOffice, nmap, qemu-kvm, virt-manager, drawio
### docker, docker-compose, LibreOffice, nmap, remmina, qemu-kvm, virt-manager, drawio
SETUP_WORKSTATION=true
## Personal Use - Do we use this device for personal things?