mirror of
https://github.com/zebrajr/HomeLab.git
synced 2025-12-06 00:20:22 +01:00
Compare commits
3 Commits
82679f90af
...
5a22f36408
| Author | SHA1 | Date | |
|---|---|---|---|
| 5a22f36408 | |||
| 49ef61c541 | |||
| 114232c050 |
|
|
@ -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.
|
||||
|
||||
|
|
|
|||
|
|
@ -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?
|
||||
|
|
|
|||
7
fedora-bootstrap/manual/coolercontrol.sh
Normal file
7
fedora-bootstrap/manual/coolercontrol.sh
Normal 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
|
||||
2
fedora-bootstrap/manual/upscayl.sh
Normal file
2
fedora-bootstrap/manual/upscayl.sh
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
#!/bin/bash
|
||||
sudo flatpak install flathub org.upscayl.Upscayl
|
||||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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?
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user