Zsh Prompt

This commit is contained in:
MangoPig
2026-06-01 12:12:41 +01:00
parent b41dcbac2a
commit 84100a85d1
5 changed files with 253 additions and 25 deletions

View File

@@ -21,23 +21,3 @@ clean:
update:
git -C '{{project_root}}' pull origin main
just --justfile '{{project_root}}/Justfile' setup all
# Run distro test containers.
test-ubuntu:
echo "Ubuntu Test"
docker run -it --rm -e TERM=xterm-256color -v '{{project_root}}':/root/dotfiles ubuntu:latest \
bash -c "export DEBIAN_FRONTEND=noninteractive && \
apt-get update && \
apt-get install -y sudo git make curl && \
cd /root/dotfiles && \
make setup"
test-arch:
echo "Spawning Arch Container..."
docker run -it --rm -e TERM=xterm-256color -v '{{project_root}}':/root/dotfiles archlinux:latest \
bash -c "pacman -Sy --noconfirm base-devel git make sudo && cd /root/dotfiles && make setup"
test-fedora:
echo "Spawning Fedora Container..."
docker run -it --rm -e TERM=xterm-256color -v '{{project_root}}':/root/dotfiles fedora:latest \
bash -c "dnf install -y git make sudo curl which passwd procps-ng && cd /root/dotfiles && make setup"