32 lines
799 B
Bash
Executable file
32 lines
799 B
Bash
Executable file
#!/bin/bash
|
|
|
|
mkdir -p ~/h
|
|
|
|
cd /etc/yum.repos.d || exit 1
|
|
sudo wget https://pkgs.tailscale.com/stable/fedora/tailscale.repo
|
|
sudo flatpak remote-add --if-not-exists flathub https://dl.flathub.org/repo/flathub.flatpakrepo
|
|
rpm-ostree override remove firefox firefox-langpacks
|
|
rpm-ostree install \
|
|
distrobox \
|
|
tailscale \
|
|
syncthing \
|
|
ansible \
|
|
epiphany \
|
|
python3-keyring \
|
|
wl-clipboard \
|
|
source-foundry-hack-fonts \
|
|
mozilla-fira-fonts-common \
|
|
mozilla-fira-mono-fonts \
|
|
mozilla-fira-sans-fonts \
|
|
fastfetch \
|
|
mutt \
|
|
msmtp \
|
|
lynx
|
|
|
|
ARCH=$(/usr/bin/arch)
|
|
if [[ ${ARCH} = "x86_64" ]]; then
|
|
sudo wget https://rpm.librewolf.net/librewolf-repo.repo
|
|
rpm-ostree install librewolf
|
|
else
|
|
sudo flatpak install -y io.gitlab.librewolf-community
|
|
fi
|