blob: 72f1c4285893831e8630dcdbbec40489784d1619 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/bash
# We'll use xpkg from xtools to find installable packages
if ! [ -x "$(command -v xpkg)" ]; then
sudo xbps-install xtools
fi
# Set up file sync
if [ ! -f ~/repository.list ]; then
xpkg -m > ~/repository.list
fi
|