repo/ufetch/PACKAGE
2021-07-02 03:49:14 +02:00

10 lines
244 B
Bash

#!/bin/sh
pkg_ver="duck-ufetch"
pkg_install(){
wget -O "${prefix}"/usr/bin/ufetch https://git.hippoz.xyz/duck/repo/raw/branch/master/ufetch/ufetch-linux
chmod +x "${prefix}"/usr/bin/ufetch
}
pkg_uninstall(){
rm "${prefix}"/usr/bin/ufetch
}