linutil/core/tabs/system-setup/tab_data.toml

145 lines
4.8 KiB
TOML
Raw Normal View History

2024-08-15 07:09:31 +01:00
name = "System Setup"
[[data]]
name = "Arch Linux"
[[data.preconditions]]
matches = true
data = "command_exists"
values = ["pacman"]
[[data.entries]]
2024-08-22 23:19:52 +01:00
name = "Arch Server Setup"
description = "This command installs a minimal arch server setup under 5 minutes."
2024-08-22 23:19:52 +01:00
script = "arch/server-setup.sh"
task_list = "SI D"
multi_select = false
[[data.entries]]
name ="Linux Neptune for SteamDeck"
description = "Valve's fork of Linux Kernel for the SteamDeck"
script = "arch/linux-neptune.sh"
task_list = "I PFM K"
[[data.entries.preconditions]]
matches = true
data = { file = "/sys/devices/virtual/dmi/id/board_vendor" }
values = [ "Valve" ]
[[data.entries]]
name = "Nvidia Drivers && Hardware Acceleration"
description = "This script installs and configures nvidia drivers with Hardware Acceleration."
script = "arch/nvidia-drivers.sh"
task_list = "I FM SS"
[[data.entries]]
name = "Paru AUR Helper"
description = "Paru is your standard pacman wrapping AUR helper with lots of features and minimal interaction. To know more about AUR helpers visit: https://wiki.archlinux.org/title/AUR_helpers"
script = "arch/paru-setup.sh"
task_list = "I"
2024-08-22 23:19:52 +01:00
[[data.entries]]
name = "Yay AUR Helper"
description = "Yet Another Yogurt - An AUR Helper Written in Go. To know more about AUR helpers visit: https://wiki.archlinux.org/title/AUR_helpers"
2024-08-22 23:19:52 +01:00
script = "arch/yay-setup.sh"
task_list = "I"
2024-08-22 23:19:52 +01:00
[[data]]
name = "Fedora"
[[data.preconditions]]
matches = true
data = "command_exists"
values = ["dnf"]
[[data.entries]]
name = "Configure DNF"
description = "Optimizes DNF for parallel downloads"
script = "fedora/configure-dnf.sh"
task_list = "PFM"
[[data.entries]]
name = "Multimedia Codecs"
description = "This script is designed to install multimedia codecs, and to ensure RPM Fusion repositories are installed."
script = "fedora/multimedia-codecs.sh"
task_list = "I"
[[data.entries]]
name = "Nvidia Proprietary Drivers"
description = "This script is designed to download the proprietary NVIDIA drivers in Fedora."
script = "fedora/nvidia-proprietary-driver-setup.sh"
task_list = "I"
[[data.entries]]
name = "RPM Fusion"
description = "RPM Fusion provides software that the Fedora Project or Red Hat doesn't want to ship. That software is provided as precompiled RPMs for all current Fedora versions and current Red Hat Enterprise Linux or clones versions; you can use the RPM Fusion repositories with tools like yum and PackageKit. For more information visit: https://rpmfusion.org/"
script = "fedora/rpm-fusion-setup.sh"
task_list = "MP"
[[data.entries]]
name = "Upgrade to a New Fedora Release"
description = "Upgrades system to the next Fedora release"
script = "fedora/fedora-upgrade.sh"
task_list = "MP"
[[data.entries]]
name = "Virtualization"
description = "Enables Virtualization through dnf"
script = "fedora/virtualization.sh"
task_list = "I"
feat: btrfs assistant & grub-btrfs (#789) * Btrfs Assistant(+snapper), grub-btrfs Setup added Adds fedora-btrfs-assistant.sh, updates tab_data and documentation. * updated doc, ta_data and sh * enable grub-btrfsd service added * updated some wording in notices. * updated wording and add prompts for actions * added fix for a possible grub error also some more enhancements and wording improvements. * user action removed reinstall snapper action removed because removing and reinstalling snapper is a very unlikely action. and also snapper can't handle ./snapsots folder in the disk after reinstalling: "creating btrfs subvolume .snapshots failed since it already exists". * firs snapshot order changed home snapshot taken first because it's config can be saved to first root snapshot. * better explanations in user prompts * improved y/n loop * formatting improvements * formatting improvement Co-authored-by: Adam Perkowski <adas1per@protonmail.com> * formatting improvement Co-authored-by: Adam Perkowski <adas1per@protonmail.com> * Update task list Co-authored-by: Adam Perkowski <adas1per@protonmail.com> * removed a inline comment Co-authored-by: Adam Perkowski <adas1per@protonmail.com> * removed an unnececary inline comment Co-authored-by: Adam Perkowski <adas1per@protonmail.com> * removed an unnececary inline comment Co-authored-by: Adam Perkowski <adas1per@protonmail.com> * improved sed -i Co-authored-by: Adam Perkowski <adas1per@protonmail.com> * improved sed -i Co-authored-by: Adam Perkowski <adas1per@protonmail.com> * improved sed -i Co-authored-by: Adam Perkowski <adas1per@protonmail.com> * newlines removed from tab_data.toml Co-authored-by: Nyx <nnyyxxxx@protonmail.com> * btrfs detection moved to toml Co-authored-by: Nyx <nnyyxxxx@protonmail.com> * data.preconditions added - escalation tool used * $PACKAGER replaced with dnf * re-added packager Co-authored-by: Adam Perkowski <adas1per@protonmail.com> * re-added packager Co-authored-by: Adam Perkowski <adas1per@protonmail.com> * usergide updated with docgen * typo fix --------- Co-authored-by: Adam Perkowski <adas1per@protonmail.com> Co-authored-by: Nyx <nnyyxxxx@protonmail.com>
2024-11-06 22:05:26 +00:00
[[data.entries]]
name = "Btrfs Assistant, Snapper Config, grub-btrfs"
description = "Installs Btrfs Assistant, Snapper, dnf snapper plugin and takes the first root(/) and /home snapshots. Enables snapper-timeline and snapper-cleanup services. Installs Grub-Btrfs. Notice: To perform a system recovery via grub-btrfs, perform a restore operation with Btrfs Assistant GUI after booting into the snapshot. Notice: If you used the default Fedora disk partitioning during OS installation, the /boot configured as an separate EXT4 partition. Therefore, it cannot be included in root snapshots. Backup separately."
script = "fedora/fedora-btrfs-assistant.sh"
task_list = "I PFM SS"
[[data.preconditions]]
matches = true
data = "command_exists"
values = [ "btrfs" ]
2024-09-19 19:09:51 +01:00
[[data]]
name = "Build Prerequisites"
description = "This script is designed to handle the installation of various software dependencies across different Linux distributions"
2024-09-19 22:45:05 +01:00
script = "compile-setup.sh"
task_list = "I"
2024-09-19 19:09:51 +01:00
2024-09-19 01:31:54 +01:00
[[data]]
name = "Full System Cleanup"
description = "This script is designed to remove unnecessary packages, clean old cache files, remove temporary files, and to empty the trash."
2024-09-19 01:31:54 +01:00
script = "system-cleanup.sh"
task_list = "RP PFM"
multi_select = false
2024-09-19 01:31:54 +01:00
2024-08-15 07:09:31 +01:00
[[data]]
name = "Full System Update"
description = "This command updates your system to the latest packages available for your distro"
2024-08-15 07:09:31 +01:00
script = "system-update.sh"
task_list = "PFM"
multi_select = false
2024-08-15 07:09:31 +01:00
[[data]]
name = "Gaming Dependencies"
description = "This script is designed to handle the installation of gaming dependencies across different Linux distributions"
2024-09-19 22:45:05 +01:00
script = "gaming-setup.sh"
task_list = "I"
2024-08-15 07:09:31 +01:00
[[data]]
name = "Global Theme"
description = "This script is designed to handle the installation and configuration of global theming"
2024-09-19 22:45:05 +01:00
script = "global-theme.sh"
task_list = "I PFM"
2024-08-15 07:09:31 +01:00
[[data]]
name = "Remove Snaps"
description = "This script is designed to remove snap"
2024-09-19 22:45:05 +01:00
script = "remove-snaps.sh"
task_list = "RP"
[[data]]
name = "TTY Fonts"
description = "This Script will set the default TTY font to Terminus size 32 Bold"
script = "terminus-tty.sh"
task_list = "I PFM"