10 lines
224 B
Bash
10 lines
224 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
|
|
chmod +x "${prefix}"/usr/bin/ufetch
|
|
}
|
|
pkg_uninstall(){
|
|
rm "${prefix}"/usr/bin/ufetch
|
|
}
|