commit 50ba0fa5930a9bbe77a9b706383f0d40b0f83c9d Author: Robert Date: Sun May 12 22:24:54 2024 +0200 initial commit diff --git a/arch-setup b/arch-setup new file mode 100644 index 0000000..3a39fe8 --- /dev/null +++ b/arch-setup @@ -0,0 +1,50 @@ +#!/bin/bash + +PACMAN_INSTALLS=( + base-devel + git + clang +) + +YAY_INSTALLS=( + hyprland + firefox + zsh + waybar + swaylock + swayidle + waycopy + ttf-fira-code + nerd-fira-code + powerline-fonts + nodejs +) + +# Prepare installation by installing basic programs via pacman +sudo pacman -Sy ${PACMAN_INSTALLS[@]} + +HOME_DIR=/home/robert +PKG_BUILD_DIR=${HOME_DIR}/.repos +mkdir -p ${PKG_BUILD_DIR} + +# Install yay +git clone https://aur.archlinux.org/yay.git ${PKG_BUILD_DIR}/yay +cd ${PKG_BUILD_DIR}/yay +makepkg -si + +yay -Y --gendb +yay -Syu --devel +yay -Y --devel --save + +# Install yay packages +yay -S ${YAY_INSTALLS[@]} + +# Generate ssh-key for github +echo "Generating shh key" +ssh-keygen -t rsa -f /.ssh/id_rsa -N "" + +Hyprland & +HYPRLAND_PID=$! + +firefox +