From 180d586dfd3d6a386ad44487bedc9c405854b190 Mon Sep 17 00:00:00 2001 From: proledatarian Date: Mon, 30 Jan 2023 12:33:52 +0000 Subject: [PATCH] Add new file --- post-install.sh | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 post-install.sh diff --git a/post-install.sh b/post-install.sh new file mode 100644 index 0000000..031a797 --- /dev/null +++ b/post-install.sh @@ -0,0 +1,31 @@ +#!/bin/bash + +# This script installs additional packages and configures the system + +# Installing packages + +# Installing AUR-helper Yay +git clone https://aur.archlinux.org/yay-bin.git +cd yay-bin +makepkg -si --noconfirm +cd ~ + +# Clone repo containing package list +git clone https://gitlab.com/dataprolet/arch + +# Enable multilib repo +sudo sed -i "/\[multilib\]/,/Include/"'s/^#//' /etc/pacman.conf + +# Stupid workaround for package conflict +yes | yay -S pipewire-jack + +# Install packages +yay -Syu --needed --noconfirm - < arch/pkgs + +# Stupid workaround for package conflict +yes | yay -S wine-ge-custom + + + + +systemctl enable sshd