pyuserconfig/install.sh

12 lines
275 B
Bash
Raw Normal View History

2019-08-16 03:36:26 +02:00
#!/bin/sh
if type pipx >/dev/null 2>&1; then
pipx install git+https://git.lys.is/lysis/pyuserconfig.git
if [ ! -e ~/.userconfig ]; then
git clone git@git.lys.is:lysis/userconfig.git ~/.userconfig
fi
userconfig
2019-08-16 03:36:26 +02:00
else
echo "No pipx installed, cannot proceed."
2019-08-16 03:36:26 +02:00
fi