dotfiles/fedora-atomic/kinoite-setup.sh

36 lines
845 B
Bash
Raw Normal View History

#!/bin/bash
2024-08-15 01:52:41 +00:00
mkdir -p ~/h
2024-06-02 04:35:44 +00:00
cd /etc/yum.repos.d || exit 1
sudo wget https://pkgs.tailscale.com/stable/fedora/tailscale.repo
2024-03-31 15:15:55 +00:00
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 \
2024-08-11 14:56:25 +00:00
distrobox \
tailscale \
syncthing \
ansible \
falkon \
python3-keyring \
wl-clipboard \
kate \
mercurial \
mercurial-rust \
source-foundry-hack-fonts \
2024-08-15 01:52:41 +00:00
mozilla-fira-fonts-common \
mozilla-fira-mono-fonts \
mozilla-fira-sans-fonts \
fastfetch \
mutt \
msmtp \
lynx
2024-08-11 15:07:58 +00:00
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