2023-09-06 20:54:23 -05:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
if [ $(whoami) == "root" ]; then
|
|
|
|
echo "Run as a normal user, not root"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
command_exists() { type "$1" &>/dev/null; }
|
|
|
|
|
|
|
|
if command_exists "apt-get"; then
|
2023-09-11 22:22:20 -05:00
|
|
|
sudo apt update
|
|
|
|
sudo apt install curl -y
|
2023-12-06 21:47:27 -06:00
|
|
|
elif command_exists "dnf"; then
|
2023-09-11 22:22:20 -05:00
|
|
|
sudo dnf config-manager --add-repo https://askiiart.net/repos/fedora/x86_64/askiiart.repo
|
2023-12-28 01:21:21 -06:00
|
|
|
sudo dnf remove libreoffice* atril -y
|
2023-10-10 13:27:57 -05:00
|
|
|
sudo dnf install https://mirrors.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm https://mirrors.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-$(rpm -E %fedora).noarch.rpm
|
2023-09-06 20:54:23 -05:00
|
|
|
elif command_exists "pacman"; then
|
2023-09-07 16:34:26 -05:00
|
|
|
WD=$(pwd)
|
2023-10-13 08:48:18 -05:00
|
|
|
sudo pacman -S --noconfirm --needed git base-devel
|
2023-09-07 16:34:26 -05:00
|
|
|
git clone https://aur.archlinux.org/yay.git
|
|
|
|
cd yay
|
|
|
|
makepkg -si
|
|
|
|
cd $WD
|
2023-11-23 12:31:51 -06:00
|
|
|
rm -rf yay
|
|
|
|
yay -S noto-fonts-emoji --noconfirm --needed
|
|
|
|
sudo mkdir /usr/share/fonts/meslolgs
|
2023-11-23 16:03:11 -06:00
|
|
|
yay -S ttf-meslo-nerd-font-powerlevel10k --noconfirm --needed
|
2023-09-06 20:54:23 -05:00
|
|
|
elif command_exists "zypp"; then
|
2023-09-13 07:56:10 -05:00
|
|
|
echo "not yet implemented"
|
2023-09-06 20:54:23 -05:00
|
|
|
elif command_exists "emerge"; then
|
2023-09-13 07:56:10 -05:00
|
|
|
echo "not yet implemented"
|
2023-09-06 20:54:23 -05:00
|
|
|
elif command_exists "apk"; then
|
2023-09-13 07:56:10 -05:00
|
|
|
echo "not yet implemented"
|
2023-09-06 20:54:23 -05:00
|
|
|
else
|
|
|
|
echo "Unsupported: unknown package manager and distro"
|
|
|
|
fi
|