add post install script

This commit is contained in:
JOLIMAITRE Matthieu 2024-06-18 04:48:24 +02:00
parent 61fee10e43
commit c2e89fed3d

16
complete.sh Executable file
View file

@ -0,0 +1,16 @@
#!/bin/sh
set -e
if [ -f /usr/bin/pacman ]
then
(
cd $(mktemp -d)
git clone https://aur.archlinux.org/paru-bin.git
cd paru-bin
makepkg -si --noconfirm
)
paru -Sy
pacman -S bat lsd dust ripgrep
paru -S tuc
fi