From 7f65331ed7b15cfaf8d7036e3b411a8c0a468ffa Mon Sep 17 00:00:00 2001 From: Nathan Chancellor Date: Wed, 10 Jul 2024 18:02:43 -0700 Subject: [PATCH] Install fastfetch on main distributions Signed-off-by: Nathan Chancellor --- podman/dev/arch/setup-env.sh | 1 + podman/dev/fedora/setup-env.sh | 1 + python/setup/arch.py | 1 + python/setup/fedora.py | 1 + 4 files changed, 4 insertions(+) diff --git a/podman/dev/arch/setup-env.sh b/podman/dev/arch/setup-env.sh index 90d1a8c4..273f607f 100644 --- a/podman/dev/arch/setup-env.sh +++ b/podman/dev/arch/setup-env.sh @@ -142,6 +142,7 @@ function install_packages() { mutt # env + fastfetch fish fzf jq diff --git a/podman/dev/fedora/setup-env.sh b/podman/dev/fedora/setup-env.sh index a730f713..11b5a38e 100644 --- a/podman/dev/fedora/setup-env.sh +++ b/podman/dev/fedora/setup-env.sh @@ -98,6 +98,7 @@ EOF # env bat + fastfetch fd-find fish fzf diff --git a/python/setup/arch.py b/python/setup/arch.py index 2e5121ec..b2006b9f 100755 --- a/python/setup/arch.py +++ b/python/setup/arch.py @@ -161,6 +161,7 @@ def pacman_install_packages(): packages = [ # Administration tools 'btop', + 'fastfetch', 'iputils', 'kexec-tools', 'modprobed-db', diff --git a/python/setup/fedora.py b/python/setup/fedora.py index 53ab7b74..6487cd2a 100755 --- a/python/setup/fedora.py +++ b/python/setup/fedora.py @@ -146,6 +146,7 @@ def install_packages(): packages = [ # administration 'btop', + 'fastfetch', 'mosh', 'opendoas', 'remove-retired-packages',