This repository has been archived on 2021-04-06. You can view files and clone it, but cannot push or open issues/pull-requests.
dotfiles/home/.pipx.sh

19 lines
286 B
Bash
Executable File

#!/bin/zsh
for module in \
'python-language-server[pyflakes,rope]' \
aria2p \
autorandr \
black \
docker-compose \
esptool \
pipenv \
platformio \
pre-commit \
xkcdpass \
xq \
youtube-dl \
yq
do
pipx install "${module}" || true
done