From 7cefbd15263860fd845b9a6465ffc637c128b772 Mon Sep 17 00:00:00 2001 From: = <=> Date: Wed, 22 Jul 2026 08:21:42 +0200 Subject: [PATCH] Added the automated installation of Tailscale & Ghostty. Also made flatpak update -y a part of the "upup" alias. --- fedora_post_install.sh | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/fedora_post_install.sh b/fedora_post_install.sh index d4b3b1b..f8881f6 100644 --- a/fedora_post_install.sh +++ b/fedora_post_install.sh @@ -18,6 +18,13 @@ dnf install -y https://mirrors.rpmfusion.org/free/fedora/rpmfusion-free-release- # Get the nonfree repository (NVIDIA drivers, some codecs) dnf install -y https://mirrors.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-$(rpm -E %fedora).noarch.rpm &> /dev/null +# Add Ghostty +dnf copr enable scottames/ghostty -y &> /dev/null +dnf install ghostty -y &> /dev/null + +# Installing Tailscale +curl -fsSL https://tailscale.com/install.sh | sh &> /dev/null + # Update everything so it all plays nice together echo "Updating everything..." dnf update --refresh -y &> /dev/null @@ -89,7 +96,7 @@ sed -i "$ a MultiProfile=multiple" /etc/bluetooth/main.conf ###Adding the update alias echo "Now you can just use the command 'upup' to update everything." -"alias upup='sudo dnf update --refresh -y'" >> $HOME/.bashrc +"alias upup='sudo dnf update --refresh -y && flatpak update -y'" >> $HOME/.bashrc ###Archive support echo "Installing archive support" -- 2.47.3