next gen init

This commit is contained in:
Strix 2023-10-14 22:38:11 +02:00
parent 84872dc103
commit a16479ee7a
No known key found for this signature in database
GPG key ID: 49B2E37B8915B774
40 changed files with 239 additions and 894 deletions

View file

@ -0,0 +1,13 @@
#!/bin/sh
# Installs yay.
[ "$UID" = "0" ] || exit 0
yaytmpdir=$(mktemp -d)
git clone https://aur.archlinux.org/yay $yaytmpdir
oldpwd=$(pwd)
cd $yaytmpdir
makepkg -si
cd $oldpwd