12 lines
436 B
Plaintext
12 lines
436 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
cd "$HOME"
|
||
|
echo "Init submodules"
|
||
|
yadm submodule update --recursive --init
|
||
|
sudo pacman -S --needed git base-devel && git clone https://aur.archlinux.org/yay.git && cd yay && makepkg -si && cd .. && rm -rf yay
|
||
|
yay -Syyuu --needed rustup
|
||
|
rustup default nightly
|
||
|
installable_packages=$(comm -12 <(yay -Slq | sort) <(sort ~/.local/share/pkglist))
|
||
|
yay -S --needed $installable_packages
|
||
|
wal --cols16 -s -i $HOME/Pictures/Wallpapers
|