flocon/run_once_10_install_programs.sh.tmpl

22 lines
871 B
Cheetah
Raw Normal View History

#!/bin/sh
{{ if eq .flavor "desktop" }}
2024-06-07 08:21:12 +00:00
{{ if eq .chezmoi.osRelease.id "fedora" }}
# add codium
sudo rpmkeys --import https://gitlab.com/paulcarroty/vscodium-deb-rpm-repo/-/raw/master/pub.gpg
printf "[gitlab.com_paulcarroty_vscodium_repo]\nname=download.vscodium.com\nbaseurl=https://download.vscodium.com/rpms/\nenabled=1\ngpgcheck=1\nrepo_gpgcheck=1\ngpgkey=https://gitlab.com/paulcarroty/vscodium-deb-rpm-repo/-/raw/master/pub.gpg\nmetadata_expire=1h" | sudo tee -a /etc/yum.repos.d/vscodium.repo
2024-06-07 08:21:12 +00:00
# add starship copr
sudo dnf copr enable atim/starship
# install packages
2024-02-07 12:55:57 +00:00
sudo dnf check-update
2024-02-07 16:41:40 +00:00
sudo dnf install $(cat {{ .chezmoi.sourceDir -}}/fedora_packages) -y
{{ end }}
{{ end }}
2024-02-07 14:45:45 +00:00
{{ if (and (eq .flavor "wm") (eq .chezmoi.osRelease.id "arch")) }}
# TODO add arch packages (1password for GPG, vscode for chezmoi edit)
sudo pacman -Sy - < arch_packages
{{ end }}