These dotfiles were configured to be used with a GNU Linux distribution, in my case Arch Linux. I keep this public repository and set of instructions for my personal convenience alone, and therefore give absolutely no guarantee these will not brick your machine.
curl https://raw.githubusercontent.com/Ezuharad/.dotfiles/main/init.sh | bash -s -- headless
headless
can be swapped for one or more of the following tools or tool groups:
all
: installs all tool groups.headless
: installs thegit
,nvim
,yazi
, andzsh
tools.extra
: installs thebat
,conda
,docker
,fastfetch
,htop
, andman
tools.
Building the test container:
docker build . -f .test/<DOCKERFILE>
Removing used containers and images:
docker ps -a | cut -f 1 -d " " | tail -n +2 | xargs docker rm
docker image ls | grep \<none\> | tr -s " " | cut -f 3 -d " " | xargs docker rm