29 lines
616 B
Makefile
29 lines
616 B
Makefile
default:
|
|
just --list
|
|
|
|
init-arch: install-aur install-arch stow
|
|
|
|
install-arch:
|
|
@echo "installing pkgs"
|
|
sudo pacman -S --needed --noconfirm - < packages-arch
|
|
@echo "Done. Moving onto aur..."
|
|
yay -S --noconfirm wayfreeze
|
|
|
|
install-aur:
|
|
sudo pacman -S --noconfirm debugedit fakeroot go make gcc
|
|
git clone https://aur.archlinux.org/yay.git /tmp/yay
|
|
cd /tmp/yay && makepkg -si
|
|
|
|
stow:
|
|
stow -t ~/.config config
|
|
@echo "Stoweed"
|
|
|
|
unstow:
|
|
stow -D -t ~/.config config
|
|
|
|
setup-displays:
|
|
python init/swaysetupmonitors.py
|
|
mv mute ~/.config/
|
|
|
|
restow:
|
|
stow -R -t ~/.config config
|