16 lines
178 B
Bash
Executable file
16 lines
178 B
Bash
Executable file
#!/bin/zsh
|
|
for module in \
|
|
aria2p \
|
|
autorandr \
|
|
black \
|
|
docker-compose \
|
|
esptool \
|
|
platformio \
|
|
pre-commit \
|
|
xkcdpass \
|
|
xq \
|
|
youtube-dl
|
|
do
|
|
pipx install --force "${module}"
|
|
done
|